]> git.eshelyaron.com Git - emacs.git/commitdiff
Add ':group' to a couple of faces
authorEshel Yaron <me@eshelyaron.com>
Sat, 19 Oct 2024 14:33:43 +0000 (16:33 +0200)
committerEshel Yaron <me@eshelyaron.com>
Sat, 19 Oct 2024 14:33:43 +0000 (16:33 +0200)
lisp/emacs-lisp/crm.el

index c6e40d6fa2769072c52babf60e8f4af5857daeec..36e6356710127dc93f2d8f0ee3e5cf68cc445bb8 100644 (file)
@@ -299,11 +299,13 @@ that fails this command prompts you for the separator to use."
 (defface crm-separator
   '((t :inherit minibuffer-prompt))
   "Face for highlighting input separators in multi-input minibuffers."
-  :version "30.1")
+  :version "30.1"
+  :group 'minibuffer)
 
 (defface crm-prompt-indicator-highlight
   '((t :inherit mode-line-highlight))
-  "Face for minibuffer multi-inputs prompt indicator when mouse is over it.")
+  "Face for minibuffer multi-inputs prompt indicator when mouse is over it."
+  :group 'minibuffer)
 
 (defun crm-highlight-separators (beg end &optional _)
   "Highlight current minibuffer input separators between BEG and END."