emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/inspector 0fa89e3177 41/93: Make customization group fo


From: ELPA Syncer
Subject: [elpa] externals/inspector 0fa89e3177 41/93: Make customization group for faces
Date: Tue, 24 May 2022 18:57:58 -0400 (EDT)

branch: externals/inspector
commit 0fa89e3177bf88f5d95d1999a5174b7e70bd83a2
Author: Mariano Montone <marianomontone@gmail.com>
Commit: Mariano Montone <marianomontone@gmail.com>

    Make customization group for faces
---
 inspector.el | 14 +++++++++-----
 1 file changed, 9 insertions(+), 5 deletions(-)

diff --git a/inspector.el b/inspector.el
index f7df497bbc..17a629111c 100644
--- a/inspector.el
+++ b/inspector.el
@@ -75,30 +75,34 @@
   "Emacs Lisp inspector customizations."
   :group 'lisp)
 
+(defgroup inspector-faces nil
+  "Emacs Lisp inspector faces."
+  :group 'inspector)
+
 (defface inspector-title-face
   '((t ()))
   "Face for title describing object."
-  :group 'inspector)
+  :group 'inspector-faces)
 
 (defface inspector-label-face
   '((t (:inherit font-lock-constant-face)))
   "Face for labels in the inspector."
-  :group 'inspector)
+  :group 'inspector-faces)
 
 (defface inspector-value-face
   '((t (:inherit font-lock-builtin-face)))
   "Face for things which can themselves be inspected."
-  :group 'inspector)
+  :group 'inspector-faces)
 
 (defface inspector-action-face
   '((t (:inherit font-lock-warning-face)))
   "Face for labels of inspector actions."
-  :group 'inspector)
+  :group 'inspector-faces)
 
 (defface inspector-type-face
   '((t (:inherit font-lock-type-face)))
   "Face for type description in inspector."
-  :group 'inspector)
+  :group 'inspector-faces)
 
 (defcustom inspector-end-column 80
   "Control print truncation size in inspector."



reply via email to

[Prev in Thread] Current Thread [Next in Thread]