diff options
| author | Karl Heuer | 1994-03-15 23:36:48 +0000 |
|---|---|---|
| committer | Karl Heuer | 1994-03-15 23:36:48 +0000 |
| commit | 7fe78b07bcf38fd80159a3e9490294dd0c08387b (patch) | |
| tree | 1ac6178059b5227294785c01692131702a008064 | |
| parent | 9f145434ccf13e9af82a3d072c5aca068983b412 (diff) | |
| download | emacs-7fe78b07bcf38fd80159a3e9490294dd0c08387b.tar.gz emacs-7fe78b07bcf38fd80159a3e9490294dd0c08387b.zip | |
(defun-prompt-regexp): Doc fix.
| -rw-r--r-- | lisp/emacs-lisp/lisp.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/lisp.el b/lisp/emacs-lisp/lisp.el index 3ffc6a09b55..2f918b93573 100644 --- a/lisp/emacs-lisp/lisp.el +++ b/lisp/emacs-lisp/lisp.el | |||
| @@ -27,8 +27,11 @@ | |||
| 27 | 27 | ||
| 28 | ;;; Code: | 28 | ;;; Code: |
| 29 | 29 | ||
| 30 | ;; Note that this variable is used by non-lisp modes too. | ||
| 30 | (defvar defun-prompt-regexp nil | 31 | (defvar defun-prompt-regexp nil |
| 31 | "*Non-nil => regexp to ignore, before the `(' that starts a defun.") | 32 | "*Non-nil => regexp to ignore, before the character that starts a defun. |
| 33 | This is only necessary if the opening paren or brace is not in column 0. | ||
| 34 | See `beginning-of-defun'.") | ||
| 32 | 35 | ||
| 33 | (defvar parens-require-spaces t | 36 | (defvar parens-require-spaces t |
| 34 | "Non-nil => `insert-parentheses' should insert whitespace as needed.") | 37 | "Non-nil => `insert-parentheses' should insert whitespace as needed.") |