diff options
| author | Simen Heggestøyl | 2016-08-26 19:16:47 +0200 |
|---|---|---|
| committer | Simen Heggestøyl | 2016-08-26 19:16:47 +0200 |
| commit | 09428ffc633450d2ce584b6ac63426a16759f859 (patch) | |
| tree | b66b9a77f5c29135e3e7e153a7713425d213e901 | |
| parent | 4a46232d92e7af257e1bccf2958e3362daa976dc (diff) | |
| download | emacs-09428ffc633450d2ce584b6ac63426a16759f859.tar.gz emacs-09428ffc633450d2ce584b6ac63426a16759f859.zip | |
Add "supports" to list of CSS at-rules
* lisp/textmodes/css-mode.el (css-at-ids): Add "supports" at-rule.
| -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 261826e8b26..4d8170eda06 100644 --- a/lisp/textmodes/css-mode.el +++ b/lisp/textmodes/css-mode.el | |||
| @@ -56,7 +56,7 @@ | |||
| 56 | 56 | ||
| 57 | (defconst css-at-ids | 57 | (defconst css-at-ids |
| 58 | '("charset" "font-face" "import" "keyframes" "media" "namespace" | 58 | '("charset" "font-face" "import" "keyframes" "media" "namespace" |
| 59 | "page") | 59 | "page" "supports") |
| 60 | "Identifiers that appear in the form @foo.") | 60 | "Identifiers that appear in the form @foo.") |
| 61 | 61 | ||
| 62 | (defconst scss-at-ids | 62 | (defconst scss-at-ids |