]> git.eshelyaron.com Git - emacs.git/commitdiff
css-mode.el: Add "not" pseudo-class
authorSimen Heggestøyl <simenheg@gmail.com>
Thu, 9 Apr 2015 18:58:53 +0000 (20:58 +0200)
committerSimen Heggestøyl <simenheg@gmail.com>
Thu, 9 Apr 2015 19:01:02 +0000 (21:01 +0200)
Fixes: debbugs:20267
* textmodes/css-mode.el (css-pseudo-class-ids): Add "not" to list
of CSS pseudo-classes.

lisp/textmodes/css-mode.el

index 851618cfccc9f24bb52f4ef3c0bd039142747629..d1893a36f27175bfd10bcd39131fd7b1db8edb5f 100644 (file)
@@ -41,7 +41,7 @@
 (defconst css-pseudo-class-ids
   '("active" "checked" "disabled" "empty" "enabled" "first"
     "first-child" "first-of-type" "focus" "hover" "indeterminate" "lang"
-    "last-child" "last-of-type" "left" "link" "nth-child"
+    "last-child" "last-of-type" "left" "link" "not" "nth-child"
     "nth-last-child" "nth-last-of-type" "nth-of-type" "only-child"
     "only-of-type" "right" "root" "target" "visited")
   "Identifiers for pseudo-classes.")