aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2000-10-24 11:22:48 +0000
committerGerd Moellmann2000-10-24 11:22:48 +0000
commitc7f18fbafdb5022ea0522f761189aa10783a555b (patch)
tree3ad216f825c5c2f200b76dc057c22a0a80d9cf90
parentdf0267b85b4ad81442b0defbc54c886eb5064476 (diff)
downloademacs-c7f18fbafdb5022ea0522f761189aa10783a555b.tar.gz
emacs-c7f18fbafdb5022ea0522f761189aa10783a555b.zip
(defun-prompt-regexp): Doc fix.
-rw-r--r--lisp/emacs-lisp/lisp.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/lisp.el b/lisp/emacs-lisp/lisp.el
index 4050cb52dfe..0cf4f0442dd 100644
--- a/lisp/emacs-lisp/lisp.el
+++ b/lisp/emacs-lisp/lisp.el
@@ -33,7 +33,9 @@
33(defcustom defun-prompt-regexp nil 33(defcustom defun-prompt-regexp nil
34 "*If non-nil, a regexp to ignore before the character that starts a defun. 34 "*If non-nil, a regexp to ignore before the character that starts a defun.
35This is only necessary if the opening paren or brace is not in column 0. 35This is only necessary if the opening paren or brace is not in column 0.
36See function `beginning-of-defun'." 36See function `beginning-of-defun'.
37
38Setting this variable automatically makes it local to the current buffer."
37 :type '(choice (const nil) 39 :type '(choice (const nil)
38 regexp) 40 regexp)
39 :group 'lisp) 41 :group 'lisp)