aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorTheodor Thornhill2021-09-03 08:13:49 +0200
committerLars Ingebrigtsen2021-09-03 08:13:49 +0200
commit5ae02f90fe79d09357fa9fbc2673ba44e2e64a5e (patch)
tree50cc0939f7950054a1dbaa0e3e8bae38b9df2886 /lisp
parent7a4d823b398cf40c10ec31b2944c714c672c24b7 (diff)
downloademacs-5ae02f90fe79d09357fa9fbc2673ba44e2e64a5e.tar.gz
emacs-5ae02f90fe79d09357fa9fbc2673ba44e2e64a5e.zip
Add selection to css-pseudo-element-ids
* lisp/textmodes/css-mode.el (css-pseudo-element-ids): Add selection as an element id (bug#50345).
Diffstat (limited to 'lisp')
-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 61a2f6b3bc0..3bcd9c97667 100644
--- a/lisp/textmodes/css-mode.el
+++ b/lisp/textmodes/css-mode.el
@@ -57,7 +57,7 @@
57 "Identifiers for pseudo-classes.") 57 "Identifiers for pseudo-classes.")
58 58
59(defconst css-pseudo-element-ids 59(defconst css-pseudo-element-ids
60 '("after" "before" "first-letter" "first-line") 60 '("after" "before" "first-letter" "first-line" "selection")
61 "Identifiers for pseudo-elements.") 61 "Identifiers for pseudo-elements.")
62 62
63(defconst css-at-ids 63(defconst css-at-ids