aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1997-09-09 02:57:48 +0000
committerRichard M. Stallman1997-09-09 02:57:48 +0000
commitba6b3a2a59e536e32c4b10cc468e47e639fcfd8e (patch)
treef3183149316cbd5449a91119f0b186a0159538d2
parent9cbf5df254387455644f56fe812141ab36434225 (diff)
downloademacs-ba6b3a2a59e536e32c4b10cc468e47e639fcfd8e.tar.gz
emacs-ba6b3a2a59e536e32c4b10cc468e47e639fcfd8e.zip
(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 @@
33 "*Non-nil => regexp to ignore, before the character that starts a defun. 33 "*Non-nil => regexp to ignore, before the character that starts a defun.
34This is only necessary if the opening paren or brace is not in column 0. 34This is only necessary if the opening paren or brace is not in column 0.
35See `beginning-of-defun'." 35See `beginning-of-defun'."
36 :type 'boolean 36 :type '(choice (const nil)
37 regexp)
37 :group 'lisp) 38 :group 'lisp)
38(make-variable-buffer-local 'defun-prompt-regexp) 39(make-variable-buffer-local 'defun-prompt-regexp)
39 40