From d31ebe08261bb0378b4c5800aeb539043eae6770 Mon Sep 17 00:00:00 2001 From: Eshel Yaron Date: Thu, 17 Oct 2024 17:14:11 +0200 Subject: [PATCH] Add ':group' to some 'defface's --- lisp/progmodes/elisp-mode.el | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) 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." -- 2.39.5