+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.
* 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>
"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))))