diff options
Diffstat (limited to 'ennu.el')
-rw-r--r-- | ennu.el | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -410,6 +410,7 @@ finally delete the temporary directory. The value returned is the value of the last form in BODY." (declare (indent defun)) `(let ((,temporary-directory (make-temp-file "ennu" t))) + (chmod ,temporary-directory #o755) (unwind-protect (progn ,@body) (delete-directory ,temporary-directory t)))) |