diff options
author | Simen Heggestøyl <simenheg@gmail.com> | 2016-08-26 19:16:47 +0200 |
---|---|---|
committer | Simen Heggestøyl <simenheg@gmail.com> | 2016-08-26 19:16:47 +0200 |
commit | 09428ffc633450d2ce584b6ac63426a16759f859 (patch) | |
tree | b66b9a77f5c29135e3e7e153a7713425d213e901 | |
parent | 4a46232d92e7af257e1bccf2958e3362daa976dc (diff) |
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 261826e8b2..4d8170eda0 100644 --- a/lisp/textmodes/css-mode.el +++ b/lisp/textmodes/css-mode.el @@ -56,7 +56,7 @@ (defconst css-at-ids '("charset" "font-face" "import" "keyframes" "media" "namespace" - "page") + "page" "supports") "Identifiers that appear in the form @foo.") (defconst scss-at-ids |