diff options
author | Stefan Kangas <stefan@marxist.se> | 2021-12-26 02:13:16 +0100 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2021-12-26 02:13:16 +0100 |
commit | 3f64204c12cb713329e29b7b847875bee9885ba3 (patch) | |
tree | dc4440a3057d39981412cc806a2186f6961a0fdd /lisp | |
parent | 26f11ed91fd749becf8b3dd62a2bd8ae79e03c78 (diff) | |
download | emacs-3f64204c12cb713329e29b7b847875bee9885ba3.tar.gz emacs-3f64204c12cb713329e29b7b847875bee9885ba3.tar.bz2 emacs-3f64204c12cb713329e29b7b847875bee9885ba3.zip |
Make read-multiple-choice-face inherit help-key-binding
* lisp/faces.el (read-multiple-choice-face): Inherit
help-key-binding in addition to underline.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/faces.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/faces.el b/lisp/faces.el index 39ba0f4d1b5..37fbf155842 100644 --- a/lisp/faces.el +++ b/lisp/faces.el @@ -2963,7 +2963,7 @@ It is used for characters of no fonts too." :group 'basic-faces) (defface read-multiple-choice-face - '((t (:inherit underline + '((t (:inherit (help-key-binding underline) :weight bold))) "Face for the symbol name in `read-multiple-choice' output." :group 'basic-faces |