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