comparison lisp/progmodes/executable.el @ 19830:521f5765e7ce

(executable-chmod): Fix customize type.
author Richard M. Stallman <rms@gnu.org>
date Tue, 09 Sep 1997 02:57:27 +0000
parents 727cf56647a4
children d9e33b33a02f
comparison
equal deleted inserted replaced
19829:4344b744de2f 19830:521f5765e7ce
93 (defcustom executable-chmod 73 93 (defcustom executable-chmod 73
94 "*After saving, if the file is not executable, set this mode. 94 "*After saving, if the file is not executable, set this mode.
95 This mode passed to `set-file-modes' is taken absolutely when negative, or 95 This mode passed to `set-file-modes' is taken absolutely when negative, or
96 relative to the files existing modes. Do nothing if this is nil. 96 relative to the files existing modes. Do nothing if this is nil.
97 Typical values are 73 (+x) or -493 (rwxr-xr-x)." 97 Typical values are 73 (+x) or -493 (rwxr-xr-x)."
98 :type 'integer 98 :type '(choice integer
99 (const nil))
99 :group 'executable) 100 :group 'executable)
100 101
101 102
102 (defvar executable-command nil) 103 (defvar executable-command nil)
103 104