Fix buglet in local variables initialization.
This commit is contained in:
parent
1362aeb47c
commit
7ddafb955f
2 changed files with 4 additions and 1 deletions
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue