]> git.eshelyaron.com Git - emacs.git/commitdiff
(css-electric-keys): electrick->electric.
authorStefan Monnier <monnier@iro.umontreal.ca>
Tue, 18 Sep 2007 01:48:23 +0000 (01:48 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Tue, 18 Sep 2007 01:48:23 +0000 (01:48 +0000)
(css-mode): Update correspondingly.

lisp/ChangeLog
lisp/textmodes/css-mode.el

index dffaebff3c056be418c2c3e3cdab3e7235aa1619..d451c2e9ec9ab08c1cb3b52bf91d3304cd7eed84 100644 (file)
@@ -1,3 +1,8 @@
+2007-09-18  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * textmodes/css-mode.el (css-electric-keys): electrick->electric.
+       (css-mode): Update correspondingly.
+
 2007-09-18  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        * vc-arch.el (vc-arch-extra-menu-map): New var and fun.
@@ -15,8 +20,7 @@
 
        * vc.el: Document new VC operation `extra-menu'.
 
-       * vc-hooks.el (vc-default-extra-menu, vc-menu-map-filter): New
-       function.
+       * vc-hooks.el (vc-default-extra-menu, vc-menu-map-filter): New fun.
 
 2007-09-17  Dan Nicolaescu  <dann@ics.uci.edu>
 
index f686215d31c8dfefe495d243fcb17b201227e649..d21559411e755cc065ce54d301e3b11a3e38675e 100644 (file)
     "word-spacing" "z-index")
   "Identifiers for properties.")
 
-(defcustom css-electrick-keys '(?\} ?\;) ;; '()
+(defcustom css-electric-keys '(?\} ?\;) ;; '()
   "Self inserting keys which should trigger re-indentation."
   :type '(repeat character)
   :options '((?\} ?\;)))
   (set (make-local-variable 'indent-line-function) 'css-indent-line)
   (set (make-local-variable 'fill-paragraph-function)
        'css-fill-paragraph)
-  (when css-electrick-keys
+  (when css-electric-keys
     (let ((fc (make-char-table 'auto-fill-chars)))
       (set-char-table-parent fc auto-fill-chars)
-      (dolist (c css-electrick-keys)
+      (dolist (c css-electric-keys)
         (aset fc c 'indent-according-to-mode))
       (set (make-local-variable 'auto-fill-chars) fc))))