diff options
author | Richard M. Stallman <rms@gnu.org> | 1997-09-09 02:57:27 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1997-09-09 02:57:27 +0000 |
commit | 9cbf5df254387455644f56fe812141ab36434225 (patch) | |
tree | ef459f2d7029ab7bee466e9c662d81a3696254d3 /lisp/progmodes/executable.el | |
parent | 233f3fb8deca3a616d46ea217834221d3dc6b2e1 (diff) | |
download | emacs-9cbf5df254387455644f56fe812141ab36434225.tar.gz emacs-9cbf5df254387455644f56fe812141ab36434225.tar.bz2 emacs-9cbf5df254387455644f56fe812141ab36434225.zip |
(executable-chmod): Fix customize type.
Diffstat (limited to 'lisp/progmodes/executable.el')
-rw-r--r-- | lisp/progmodes/executable.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/progmodes/executable.el b/lisp/progmodes/executable.el index a8734d965de..454090d508b 100644 --- a/lisp/progmodes/executable.el +++ b/lisp/progmodes/executable.el @@ -95,7 +95,8 @@ When this is `function', only ask when called non-interactively." This mode passed to `set-file-modes' is taken absolutely when negative, or relative to the files existing modes. Do nothing if this is nil. Typical values are 73 (+x) or -493 (rwxr-xr-x)." - :type 'integer + :type '(choice integer + (const nil)) :group 'executable) |