summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThien-Thi Nguyen <ttn@gnuvola.org>1998-06-12 05:53:52 +0000
committerThien-Thi Nguyen <ttn@gnuvola.org>1998-06-12 05:53:52 +0000
commitd5a4b6453128848c7e269626acc03af1588c2b12 (patch)
tree9f17d263471e9f05682ba2d0bd9b27f9dac24c7b
parentda6c3958e870cf859719a3fae1767fa50209787d (diff)
downloademacs-d5a4b6453128848c7e269626acc03af1588c2b12.tar.gz
(hs-minor-mode): Use `make-local-variable' not `make-variable-buffer-local'.
-rw-r--r--lisp/progmodes/hideshow.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/hideshow.el b/lisp/progmodes/hideshow.el
index a8f323e1dd5..a94672ac7bc 100644
--- a/lisp/progmodes/hideshow.el
+++ b/lisp/progmodes/hideshow.el
@@ -793,7 +793,7 @@ Key bindings:
; (progn
; (set-buffer-menubar (copy-sequence current-menubar))
; (add-menu nil (car hs-menu-bar) (cdr hs-menu-bar))))
- (make-variable-buffer-local 'line-move-ignore-invisible)
+ (make-local-variable 'line-move-ignore-invisible)
(setq line-move-ignore-invisible t)
(add-to-invisibility-spec '(hs . t)) ;;hs invisible
(hs-grok-mode-type)