From 87058b55a053fea2fb40e886f134a5f263f6b90a Mon Sep 17 00:00:00 2001 From: Arun Isaac Date: Fri, 31 Jul 2020 02:59:49 +0530 Subject: Leave new temporary directory permissions unchanged. * ennum.el (ennum-with-temporary-directory): Leave new temporary directory permissions unchanged. --- ennum.el | 1 - 1 file changed, 1 deletion(-) diff --git a/ennum.el b/ennum.el index aadd688..bcc9019 100644 --- a/ennum.el +++ b/ennum.el @@ -451,7 +451,6 @@ 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 "ennum" t))) - (chmod ,temporary-directory #o755) (unwind-protect (progn ,@body) (delete-directory ,temporary-directory t)))) -- cgit v1.2.3