Fixes: debbugs:19815

* lisp/textmodes/css-mode.el (css-smie-rules): Fix paren indent.
This commit is contained in:
Simen Heggestøyl 2015-02-09 12:26:14 -05:00 committed by Stefan Monnier
parent cbf1c1f2c7
commit 42c99697b6
2 changed files with 6 additions and 2 deletions

View file

@ -331,8 +331,8 @@
(`(:elem . basic) css-indent-offset)
(`(:elem . arg) 0)
(`(:list-intro . ,(or `";" `"")) t) ;"" stands for BOB (bug#15467).
(`(:before . "{") (if (smie-rule-hanging-p)
(smie-rule-parent 0)))))
(`(:before . ,(or "{" "("))
(if (smie-rule-hanging-p) (smie-rule-parent 0)))))
;;;###autoload
(define-derived-mode css-mode fundamental-mode "CSS"