summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--ennu.el1
1 files changed, 1 insertions, 0 deletions
diff --git a/ennu.el b/ennu.el
index 93abe57..ae61f0e 100644
--- a/ennu.el
+++ b/ennu.el
@@ -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))))