diff options
author | Arun Isaac | 2025-01-29 14:15:14 +0000 |
---|---|---|
committer | Arun Isaac | 2025-01-29 14:54:12 +0000 |
commit | 04cfb735e9e245f70cf549091f0d6b0decd7244a (patch) | |
tree | b1e2e0b25d8291e975eb145ba49c13fc96a73cc3 /ennum.el | |
parent | e7b865061843307f357dafe712b0dfd03c790269 (diff) | |
download | ennum-04cfb735e9e245f70cf549091f0d6b0decd7244a.tar.gz ennum-04cfb735e9e245f70cf549091f0d6b0decd7244a.tar.lz ennum-04cfb735e9e245f70cf549091f0d6b0decd7244a.zip |
Inhibit certain file name handlers during ennum builds.
* ennum.el (ennum-inhibit-file-name-handlers): New variable.
(ennum--file-hash): Inhibit file name handlers in
ennum-inhibit-file-name-handlers when inserting file contents
literally.
Diffstat (limited to 'ennum.el')
-rw-r--r-- | ennum.el | 13 |
1 files changed, 12 insertions, 1 deletions
@@ -141,6 +141,13 @@ to delete. If the store path is relative, it is interpreted relative to `:working-directory'. Defaults to \".ennum\"." :group 'ennum) +(defvar ennum-inhibit-file-name-handlers + '(openwith-file-handler) + "List of file name handlers that should be disabled. + +List of file name handlers that should be temporarily disabled +when ennum builds its output.") + (defmacro ennum-with-file-contents (file &rest body) "Create a temporary buffer, insert contents of FILE into that buffer and evaluate BODY. The value returned is the value of the @@ -209,7 +216,11 @@ respectively by - and _, and the pad character = is optional." (with-temp-buffer ;; TODO: Use ennum-with-file-contents (set-buffer-multibyte nil) - (insert-file-contents-literally file) + (let ((inhibit-file-name-operation 'insert-file-contents) + (inhibit-file-name-handlers + (append ennum-inhibit-file-name-handlers + inhibit-file-name-handlers))) + (insert-file-contents-literally file)) (insert file) (ennum--hash))) |