summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1997-09-09 02:57:48 +0000
committerRichard M. Stallman <rms@gnu.org>1997-09-09 02:57:48 +0000
commitfd320cbbfdf3035600601d86d0ec31197167d65d (patch)
tree5c25098bdf88b1378712f8bfc6828d2b96d91488
parent0522f94315e0c34c4d975f8e47c33c1f6a5f8628 (diff)
downloademacs-fd320cbbfdf3035600601d86d0ec31197167d65d.tar.gz
(defun-prompt-regexp): Fix customize type.
-rw-r--r--lisp/emacs-lisp/lisp.el3
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)