Fix buglet in local variables initialization.

This commit is contained in:
Thien-Thi Nguyen 2000-01-05 12:34:51 +00:00
parent 1362aeb47c
commit 7ddafb955f
2 changed files with 4 additions and 1 deletions

View file

@ -3,6 +3,8 @@
* progmodes/hideshow.el (hs-discard-overlays, hs-flag-region,
hs-show-block): Don't use `mapcar' when not accumulating.
Fix buglet in local variables initialization.
2000-01-05 Andreas Schwab <schwab@suse.de>
* hscroll.el (hscroll): Doc fix.

View file

@ -877,7 +877,8 @@ Key bindings:
(while vars
(let ((var (car vars)))
(make-variable-buffer-local var)
(put var 'permanent-local t))))
(put var 'permanent-local t))
(setq vars (cdr vars))))
;;---------------------------------------------------------------------------
;; that's it