diff options
| -rw-r--r-- | lisp/textmodes/css-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/textmodes/css-mode.el b/lisp/textmodes/css-mode.el index d3ca2d95589..11a77b5bb78 100644 --- a/lisp/textmodes/css-mode.el +++ b/lisp/textmodes/css-mode.el | |||
| @@ -892,7 +892,7 @@ cannot be completed sensibly: `custom-ident', | |||
| 892 | (,(concat "@" css-ident-re) (0 font-lock-builtin-face)) | 892 | (,(concat "@" css-ident-re) (0 font-lock-builtin-face)) |
| 893 | ;; Selectors. | 893 | ;; Selectors. |
| 894 | ;; Allow plain ":root" as a selector. | 894 | ;; Allow plain ":root" as a selector. |
| 895 | ("^[ \t]*\\(:root\\)\\(?:[\n \t]*\\){" (1 'css-selector keep)) | 895 | ("^[ \t]*\\(:root\\)[\n \t]*{" (1 'css-selector keep)) |
| 896 | ;; FIXME: attribute selectors don't work well because they may contain | 896 | ;; FIXME: attribute selectors don't work well because they may contain |
| 897 | ;; strings which have already been highlighted as f-l-string-face and | 897 | ;; strings which have already been highlighted as f-l-string-face and |
| 898 | ;; thus prevent this highlighting from being applied (actually now that | 898 | ;; thus prevent this highlighting from being applied (actually now that |