# HG changeset patch # User Richard M. Stallman # Date 873773868 0 # Node ID a517c846d04eb24eff2dec7ef9968cb70af47978 # Parent 521f5765e7ce372c9225abbd907293acc1537ecc (defun-prompt-regexp): Fix customize type. diff -r 521f5765e7ce -r a517c846d04e lisp/emacs-lisp/lisp.el --- 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)