diff options
Diffstat (limited to 'ennum.el')
-rw-r--r-- | ennum.el | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -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. |