diff options
Diffstat (limited to 'lisp/eshell')
| -rw-r--r-- | lisp/eshell/esh-util.el | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/eshell/esh-util.el b/lisp/eshell/esh-util.el index 189be5fe57c..bc2e04746b1 100644 --- a/lisp/eshell/esh-util.el +++ b/lisp/eshell/esh-util.el | |||
| @@ -64,11 +64,13 @@ Setting this to nil is offered as an aid to debugging only." | |||
| 64 | :type 'boolean) | 64 | :type 'boolean) |
| 65 | 65 | ||
| 66 | (defcustom eshell-private-file-modes #o600 ; umask 177 | 66 | (defcustom eshell-private-file-modes #o600 ; umask 177 |
| 67 | "The file-modes value to use for creating \"private\" files." | 67 | "The file-modes value to use for creating \"private\" files. |
| 68 | This is decimal, not octal. The default is 384 (0600 in octal)." | ||
| 68 | :type 'integer) | 69 | :type 'integer) |
| 69 | 70 | ||
| 70 | (defcustom eshell-private-directory-modes #o700 ; umask 077 | 71 | (defcustom eshell-private-directory-modes #o700 ; umask 077 |
| 71 | "The file-modes value to use for creating \"private\" directories." | 72 | "The file-modes value to use for creating \"private\" directories. |
| 73 | This is decimal, not octal. The default is 448 (0700 in octal)." | ||
| 72 | :type 'integer) | 74 | :type 'integer) |
| 73 | 75 | ||
| 74 | (defcustom eshell-tar-regexp | 76 | (defcustom eshell-tar-regexp |