From: Eshel Yaron Date: Thu, 17 Oct 2024 15:14:11 +0000 (+0200) Subject: Add ':group' to some 'defface's X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d31ebe08261bb0378b4c5800aeb539043eae6770;p=emacs.git Add ':group' to some 'defface's --- diff --git a/lisp/progmodes/elisp-mode.el b/lisp/progmodes/elisp-mode.el index 9ac52a21dcd..6423084877e 100644 --- a/lisp/progmodes/elisp-mode.el +++ b/lisp/progmodes/elisp-mode.el @@ -325,17 +325,21 @@ happens in interactive invocations." " " #'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."