From: Richard M. Stallman Date: Tue, 9 Sep 1997 02:57:27 +0000 (+0000) Subject: (executable-chmod): Fix customize type. X-Git-Tag: emacs-20.1~118 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9cbf5df254387455644f56fe812141ab36434225;p=emacs.git (executable-chmod): Fix customize type. --- 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)