diff options
| author | Richard M. Stallman | 1997-09-09 02:57:48 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1997-09-09 02:57:48 +0000 |
| commit | ba6b3a2a59e536e32c4b10cc468e47e639fcfd8e (patch) | |
| tree | f3183149316cbd5449a91119f0b186a0159538d2 | |
| parent | 9cbf5df254387455644f56fe812141ab36434225 (diff) | |
| download | emacs-ba6b3a2a59e536e32c4b10cc468e47e639fcfd8e.tar.gz emacs-ba6b3a2a59e536e32c4b10cc468e47e639fcfd8e.zip | |
(defun-prompt-regexp): Fix customize type.
| -rw-r--r-- | lisp/emacs-lisp/lisp.el | 3 |
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. |
| 34 | This is only necessary if the opening paren or brace is not in column 0. | 34 | This is only necessary if the opening paren or brace is not in column 0. |
| 35 | See `beginning-of-defun'." | 35 | See `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 | ||