diff options
author | Richard M. Stallman <rms@gnu.org> | 1997-09-09 02:57:48 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1997-09-09 02:57:48 +0000 |
commit | ba6b3a2a59e536e32c4b10cc468e47e639fcfd8e (patch) | |
tree | f3183149316cbd5449a91119f0b186a0159538d2 /lisp/emacs-lisp/lisp.el | |
parent | 9cbf5df254387455644f56fe812141ab36434225 (diff) | |
download | emacs-ba6b3a2a59e536e32c4b10cc468e47e639fcfd8e.tar.gz |
(defun-prompt-regexp): Fix customize type.
Diffstat (limited to 'lisp/emacs-lisp/lisp.el')
-rw-r--r-- | lisp/emacs-lisp/lisp.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/lisp.el b/lisp/emacs-lisp/lisp.el index 01e7cda43f7..d2effa5d88c 100644 --- a/lisp/emacs-lisp/lisp.el +++ b/lisp/emacs-lisp/lisp.el @@ -33,7 +33,8 @@ "*Non-nil => regexp to ignore, before the character that starts a defun. This is only necessary if the opening paren or brace is not in column 0. See `beginning-of-defun'." - :type 'boolean + :type '(choice (const nil) + regexp) :group 'lisp) (make-variable-buffer-local 'defun-prompt-regexp) |