summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1997-09-09 02:57:27 +0000
committerRichard M. Stallman <rms@gnu.org>1997-09-09 02:57:27 +0000
commit0522f94315e0c34c4d975f8e47c33c1f6a5f8628 (patch)
treefe33388d4b8b024dc3e14774752651f9206460fd
parent70d535586e434e82fd293f2d66f6dfd0f191f896 (diff)
downloademacs-0522f94315e0c34c4d975f8e47c33c1f6a5f8628.tar.gz
(executable-chmod): Fix customize type.
-rw-r--r--lisp/progmodes/executable.el3
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)