diff options
author | Gerd Moellmann <gerd@gnu.org> | 2001-05-15 11:52:10 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2001-05-15 11:52:10 +0000 |
commit | 5408c14970ad8aed1501c81223f5ea375334dfaa (patch) | |
tree | 4493b046b685846eaf5da06e6c13cc8b34da76e4 /lisp/emacs-lisp | |
parent | fa0b4c1479daea88a5ef302c13d7acd7c6dcc670 (diff) | |
download | emacs-5408c14970ad8aed1501c81223f5ea375334dfaa.tar.gz |
(lisp-mode): Make
font-lock-keywords-case-fold-search a buffer-local variable
with make-local-variable before setting it.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/lisp-mode.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/lisp-mode.el b/lisp/emacs-lisp/lisp-mode.el index 3cf349b3b2b..111efc25932 100644 --- a/lisp/emacs-lisp/lisp-mode.el +++ b/lisp/emacs-lisp/lisp-mode.el @@ -271,6 +271,7 @@ or to switch back to an existing one. Entry to this mode calls the value of `lisp-mode-hook' if that value is non-nil." (lisp-mode-variables t) + (make-local-variable 'font-lock-keywords-case-fold-search) (setq font-lock-keywords-case-fold-search t) (setq imenu-case-fold-search t)) |