]> git.eshelyaron.com Git - emacs.git/commitdiff
Add ':group' to some 'defface's
authorEshel Yaron <me@eshelyaron.com>
Thu, 17 Oct 2024 15:14:11 +0000 (17:14 +0200)
committerEshel Yaron <me@eshelyaron.com>
Thu, 17 Oct 2024 15:26:18 +0000 (17:26 +0200)
lisp/progmodes/elisp-mode.el

index 9ac52a21dcd5a19459c33dbdad21468bf84cceab..6423084877ec755edef82101449f18931550d9e9 100644 (file)
@@ -325,17 +325,21 @@ happens in interactive invocations."
   "<mode-line> <mouse-1>" #'elisp-enable-lexical-binding)
 
 (defface elisp-free-variable '((t :inherit underline))
-  "Face for highlighting free variables in Emacs Lisp code.")
+  "Face for highlighting free variables in Emacs Lisp code."
+  :group 'lisp)
 
 (defface elisp-binding-variable
   '((t :slant italic :inherit font-lock-variable-name-face))
-  "Face for highlighting binding occurrences of variables in Emacs Lisp code.")
+  "Face for highlighting binding occurrences of variables in Emacs Lisp code."
+  :group 'lisp)
 
 (defface elisp-bound-variable '((t :slant italic))
-  "Face for highlighting bound occurrences of variables in Emacs Lisp code.")
+  "Face for highlighting bound occurrences of variables in Emacs Lisp code."
+  :group 'lisp)
 
 (defface elisp-variable-at-point '((t :inherit bold))
-  "Face for highlighting (all occurrences of) the variable at point.")
+  "Face for highlighting (all occurrences of) the variable at point."
+  :group 'lisp)
 
 (defun elisp-highlight-variable (pos)
   "Highlight variable at POS along with its co-occurrences."