aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Heuer1994-04-20 01:11:35 +0000
committerKarl Heuer1994-04-20 01:11:35 +0000
commit24ff54989b2f9a739ad3381afbd9a085b9adca98 (patch)
treeb7d5614dbd9d984fbfe1572aa092c2a888cea03e
parent791587eebf6d9bd552262845aaa191b8523e5ac9 (diff)
downloademacs-24ff54989b2f9a739ad3381afbd9a085b9adca98.tar.gz
emacs-24ff54989b2f9a739ad3381afbd9a085b9adca98.zip
(defun-prompt-regexp): Make this variable buffer-local.
-rw-r--r--lisp/emacs-lisp/lisp.el1
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/lisp.el b/lisp/emacs-lisp/lisp.el
index f5904be7364..b5c13eb1213 100644
--- a/lisp/emacs-lisp/lisp.el
+++ b/lisp/emacs-lisp/lisp.el
@@ -32,6 +32,7 @@
32 "*Non-nil => regexp to ignore, before the character that starts a defun. 32 "*Non-nil => regexp to ignore, before the character that starts a defun.
33This is only necessary if the opening paren or brace is not in column 0. 33This is only necessary if the opening paren or brace is not in column 0.
34See `beginning-of-defun'.") 34See `beginning-of-defun'.")
35(make-variable-buffer-local 'defun-prompt-regexp)
35 36
36(defvar parens-require-spaces t 37(defvar parens-require-spaces t
37 "Non-nil => `insert-parentheses' should insert whitespace as needed.") 38 "Non-nil => `insert-parentheses' should insert whitespace as needed.")