1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-28 10:56:36 +00:00

Use help-key-binding face in package list help

* lisp/emacs-lisp/package.el (package--prettify-quick-help-key):
Use help-key-binding face.
This commit is contained in:
Stefan Kangas 2022-08-12 14:22:59 +02:00
parent 9e983f4e83
commit 8ae68308a1

View File

@ -3530,7 +3530,7 @@ If optional arg BUTTON is non-nil, describe its associated package."
(let ((place (cdr desc))
(out (copy-sequence (car desc))))
(add-text-properties place (1+ place)
'(face (bold font-lock-warning-face))
'(face help-key-binding)
out)
out))
(package--prettify-quick-help-key (cons desc 0))))