]> git.eshelyaron.com Git - emacs.git/commitdiff
Use named face for apropos-button
authorProtesilaos Stavrou <info@protesilaos.com>
Tue, 22 Jun 2021 13:33:26 +0000 (15:33 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Tue, 22 Jun 2021 13:33:26 +0000 (15:33 +0200)
* etc/NEWS: Document new face.
* lisp/apropos.el (apropos-button): Define new face.
(apropos-face): Specify face instead of hardcoding
attributes (bug#49162).

etc/NEWS
lisp/apropos.el

index 40c7c931624b89af510e75bc8a8711f511383739..0631eaf8227a98e035a03ffb3ccc12fe2f5272d7 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -1612,6 +1612,9 @@ These new navigation commands are bound to 'n' and 'p' in
 *** New command 'apropos-function'.
 This works like 'C-u M-x apropos-command' but is more discoverable.
 
+*** New face 'apropos-button'.
+Applies to buttons that indicate a face.
+
 ** CC Mode
 
 *** Added support for Doxygen documentation style.
index 17665a725acf2bb1adb9e481baa24be3720753cc..f2460643ab3b3fa86141b78f229da9b8da592edf 100644 (file)
@@ -96,6 +96,11 @@ include key-binding information in its output."
   "Face for property name in Apropos output, or nil for none."
   :version "24.3")
 
+(defface apropos-button
+  '((t (:inherit (font-lock-variable-name-face button))))
+  "Face for buttons that indicate a face in Apropos."
+  :version "28.1")
+
 (defface apropos-function-button
   '((t (:inherit (font-lock-function-name-face button))))
   "Button face indicating a function, macro, or command in Apropos."
@@ -276,7 +281,7 @@ before `apropos-mode' makes it buffer-local.")
 (define-button-type 'apropos-face
   'apropos-label "Face"
   'apropos-short-label "F"
-  'face '(font-lock-variable-name-face button)
+  'face 'apropos-button
   'help-echo "mouse-2, RET: Display more help on this face"
   'follow-link t
   'action (lambda (button)