aboutsummaryrefslogtreecommitdiff
path: root/ennum.el
diff options
context:
space:
mode:
Diffstat (limited to 'ennum.el')
-rw-r--r--ennum.el8
1 files changed, 7 insertions, 1 deletions
diff --git a/ennum.el b/ennum.el
index 530cae3..106aa9a 100644
--- a/ennum.el
+++ b/ennum.el
@@ -862,7 +862,13 @@ as keys. Keys are compared using `equal'."
(httpd-error proc 404))
;; If the requested file was found, serve it.
((= (httpd-status file-path) 200)
- (httpd-serve-root proc httpd-root uri-path request))
+ ;; Opening the file for serving can trigger file name
+ ;; handlers. Inhibit that.
+ (let ((inhibit-file-name-operation 'insert-file-contents)
+ (inhibit-file-name-handlers
+ (append ennum-inhibit-file-name-handlers
+ inhibit-file-name-handlers)))
+ (httpd-serve-root proc httpd-root uri-path request)))
;; Perhaps, this is a post or other HTML file that is being
;; requested. Try serving a file with a .html extension
;; appended.