summaryrefslogtreecommitdiff
path: root/ennum.el
diff options
context:
space:
mode:
authorArun Isaac2020-07-31 02:59:49 +0530
committerArun Isaac2020-07-31 03:06:53 +0530
commit87058b55a053fea2fb40e886f134a5f263f6b90a (patch)
tree95eb0fef2d0813927494e6cff19554faebbae619 /ennum.el
parentc86aabf53bdbce9819360ebb1caae2d80fc0f685 (diff)
downloadennum-87058b55a053fea2fb40e886f134a5f263f6b90a.tar.gz
ennum-87058b55a053fea2fb40e886f134a5f263f6b90a.tar.lz
ennum-87058b55a053fea2fb40e886f134a5f263f6b90a.zip
Leave new temporary directory permissions unchanged.
* ennum.el (ennum-with-temporary-directory): Leave new temporary directory permissions unchanged.
Diffstat (limited to 'ennum.el')
-rw-r--r--ennum.el1
1 files changed, 0 insertions, 1 deletions
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))))