(scheme-mode-variables): Use setq to assign buffer-local value

to lisp-indent-function.
This commit is contained in:
Eli Zaretskii 2005-09-17 11:08:03 +00:00
parent debe64512f
commit 4f46dc8746
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2005-09-17 Johan Bockg,Ae(Brd <bojohan@dd.chalmers.se>
* progmodes/scheme.el (scheme-mode-variables): Use setq to assign
buffer-local value to lisp-indent-function.
2005-09-17 Milan Zamazal <pdm@zamazal.org>
* progmodes/glasses.el (glasses-make-readable): If

View file

@ -157,7 +157,7 @@
(make-local-variable 'parse-sexp-ignore-comments)
(setq parse-sexp-ignore-comments t)
(make-local-variable 'lisp-indent-function)
(set lisp-indent-function 'scheme-indent-function)
(setq lisp-indent-function 'scheme-indent-function)
(setq mode-line-process '("" scheme-mode-line-process))
(set (make-local-variable 'imenu-case-fold-search) t)
(setq imenu-generic-expression scheme-imenu-generic-expression)