diff options
author | Stefan Kangas <stefan@marxist.se> | 2021-12-28 00:09:08 +0100 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2021-12-28 00:09:08 +0100 |
commit | fb9b7b70f55dd49d3019a9c69663076e942d857e (patch) | |
tree | 6ce01747a4354aa10821261213ceb007f14c6b4c /lisp/emacs-lisp | |
parent | 13ef21e84a8c4af0cd9e7a5f9c56a359b1344fe9 (diff) | |
download | emacs-fb9b7b70f55dd49d3019a9c69663076e942d857e.tar.gz emacs-fb9b7b70f55dd49d3019a9c69663076e942d857e.tar.bz2 emacs-fb9b7b70f55dd49d3019a9c69663076e942d857e.zip |
Fix read-multiple-choice tests
* lisp/emacs-lisp/rmc.el (rmc--add-key-description): Fix typo.
* test/lisp/emacs-lisp/rmc-tests.el
(test-rmc--add-key-description)
(test-rmc--add-key-description/with-attributes)
(test-rmc--add-key-description/non-graphical-display): Fix tests.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/rmc.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/rmc.el b/lisp/emacs-lisp/rmc.el index 9d5fe40f9aa..ed764f5350e 100644 --- a/lisp/emacs-lisp/rmc.el +++ b/lisp/emacs-lisp/rmc.el @@ -41,7 +41,7 @@ (format "%s %s" (if graphical-terminal (propertize desc 'face 'read-multiple-choice-face) - (propertize desc 'face 'help-key-name)) + (propertize desc 'face 'help-key-binding)) name)) ;; The prompt character is in the name, so highlight ;; it on graphical terminals. |