diff options
author | Karl Heuer <kwzh@gnu.org> | 1994-04-20 01:11:35 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1994-04-20 01:11:35 +0000 |
commit | b1c3ee85da89b016504d9a2c33ec35d10d6c1fae (patch) | |
tree | 57381a78a6c5e8439f7b5c05bfe3d7919819db3e /lisp/emacs-lisp | |
parent | a95938dbe072e49a76b91f71400bad3fe31abec9 (diff) | |
download | emacs-b1c3ee85da89b016504d9a2c33ec35d10d6c1fae.tar.gz |
(defun-prompt-regexp): Make this variable buffer-local.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/lisp.el | 1 |
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 @@ "*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'.") +(make-variable-buffer-local 'defun-prompt-regexp) (defvar parens-require-spaces t "Non-nil => `insert-parentheses' should insert whitespace as needed.") |