]> git.eshelyaron.com Git - emacs.git/commitdiff
(scheme-mode-variables): Use setq to assign buffer-local value
authorEli Zaretskii <eliz@gnu.org>
Sat, 17 Sep 2005 11:08:03 +0000 (11:08 +0000)
committerEli Zaretskii <eliz@gnu.org>
Sat, 17 Sep 2005 11:08:03 +0000 (11:08 +0000)
to lisp-indent-function.

lisp/ChangeLog
lisp/progmodes/scheme.el

index f64d4b0159567c74644b920a26d1c355c9b4c0ae..8e728df12fafa34efb01c8b6e941f220bcd6f40c 100644 (file)
@@ -1,3 +1,8 @@
+2005-09-17  Johan Bockg\e,Ae\e(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
index 712f967fcbc482fb82d6260d765ae2c0138f0a8b..aa50a013585a282b627c106cec9118ca4f9c9591 100644 (file)
   (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)