Mercurial > emacs
changeset 19831:a517c846d04e
(defun-prompt-regexp): Fix customize type.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Tue, 09 Sep 1997 02:57:48 +0000 |
parents | 521f5765e7ce |
children | 860e27fcf4b1 |
files | lisp/emacs-lisp/lisp.el |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/emacs-lisp/lisp.el Tue Sep 09 02:57:27 1997 +0000 +++ b/lisp/emacs-lisp/lisp.el Tue Sep 09 02:57:48 1997 +0000 @@ -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)