aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimen Heggestøyl2015-04-09 20:58:53 +0200
committerSimen Heggestøyl2015-04-09 21:01:02 +0200
commite597344849b465786fd65286a26a0f90429bbd96 (patch)
treed361df69a5d2487121521b4fdf5e9077cb3c6aba
parent011cc843ea00bd48ddae0b09854fa060f7f12ea3 (diff)
downloademacs-e597344849b465786fd65286a26a0f90429bbd96.tar.gz
emacs-e597344849b465786fd65286a26a0f90429bbd96.zip
css-mode.el: Add "not" pseudo-class
Fixes: debbugs:20267 * textmodes/css-mode.el (css-pseudo-class-ids): Add "not" to list of CSS pseudo-classes.
-rw-r--r--lisp/textmodes/css-mode.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/textmodes/css-mode.el b/lisp/textmodes/css-mode.el
index 851618cfccc..d1893a36f27 100644
--- a/lisp/textmodes/css-mode.el
+++ b/lisp/textmodes/css-mode.el
@@ -41,7 +41,7 @@
41(defconst css-pseudo-class-ids 41(defconst css-pseudo-class-ids
42 '("active" "checked" "disabled" "empty" "enabled" "first" 42 '("active" "checked" "disabled" "empty" "enabled" "first"
43 "first-child" "first-of-type" "focus" "hover" "indeterminate" "lang" 43 "first-child" "first-of-type" "focus" "hover" "indeterminate" "lang"
44 "last-child" "last-of-type" "left" "link" "nth-child" 44 "last-child" "last-of-type" "left" "link" "not" "nth-child"
45 "nth-last-child" "nth-last-of-type" "nth-of-type" "only-child" 45 "nth-last-child" "nth-last-of-type" "nth-of-type" "only-child"
46 "only-of-type" "right" "root" "target" "visited") 46 "only-of-type" "right" "root" "target" "visited")
47 "Identifiers for pseudo-classes.") 47 "Identifiers for pseudo-classes.")