aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimen Heggestøyl2016-04-20 20:08:56 +0200
committerSimen Heggestøyl2016-04-20 20:08:56 +0200
commit0c9f35a9b00a5047c44746c373b7f9934ee424a3 (patch)
treeb285c536f1c7297a449ac8d9e578b4054348fec1
parent16af826eac64c5a6e79724b79b04f5318afb273b (diff)
downloademacs-0c9f35a9b00a5047c44746c373b7f9934ee424a3.tar.gz
emacs-0c9f35a9b00a5047c44746c373b7f9934ee424a3.zip
Add "keyframes" to list of CSS at-rules
* lisp/textmodes/css-mode.el (css-at-ids): Add "keyframes" at-rule.
-rw-r--r--lisp/textmodes/css-mode.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/textmodes/css-mode.el b/lisp/textmodes/css-mode.el
index 8f80b2c105b..2a61fe3736b 100644
--- a/lisp/textmodes/css-mode.el
+++ b/lisp/textmodes/css-mode.el
@@ -53,7 +53,8 @@
53 "Identifiers for pseudo-elements.") 53 "Identifiers for pseudo-elements.")
54 54
55(defconst css-at-ids 55(defconst css-at-ids
56 '("charset" "font-face" "import" "media" "namespace" "page") 56 '("charset" "font-face" "import" "keyframes" "media" "namespace"
57 "page")
57 "Identifiers that appear in the form @foo.") 58 "Identifiers that appear in the form @foo.")
58 59
59(defconst scss-at-ids 60(defconst scss-at-ids