]> git.eshelyaron.com Git - emacs.git/commitdiff
Tune css-mode regexp
authorPaul Eggert <eggert@cs.ucla.edu>
Wed, 27 Mar 2019 18:43:18 +0000 (11:43 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Wed, 27 Mar 2019 18:44:09 +0000 (11:44 -0700)
* lisp/textmodes/css-mode.el (css--font-lock-keywords):
Omit unnecessary \(?: \) in regexp.  Suggested by Mattias EngdegĂ„rd in:
https://lists.gnu.org/r/emacs-devel/2019-03/msg01042.html

lisp/textmodes/css-mode.el

index d3ca2d95589f4a1273ddc4989c75a6cc527673e5..11a77b5bb7850d3f30e265b44a505fb37398ee99 100644 (file)
@@ -892,7 +892,7 @@ cannot be completed sensibly: `custom-ident',
     (,(concat "@" css-ident-re) (0 font-lock-builtin-face))
     ;; Selectors.
     ;; Allow plain ":root" as a selector.
-    ("^[ \t]*\\(:root\\)\\(?:[\n \t]*\\){" (1 'css-selector keep))
+    ("^[ \t]*\\(:root\\)[\n \t]*{" (1 'css-selector keep))
     ;; FIXME: attribute selectors don't work well because they may contain
     ;; strings which have already been highlighted as f-l-string-face and
     ;; thus prevent this highlighting from being applied (actually now that