* test/src/keymap-tests.el (keymap--key-description): Add multi/unibyte
tests.
This is to check the fix for Bug#59305.
"C-x <right>"))
(should (equal (key-description [M-H-right] [?\C-x])
"C-x M-H-<right>"))
+ ;; Treat latin-1 correctly vs meta. (Bug#59305)
+ (should (equal (key-description "olá")
+ "o l á"))
+ (should (equal (key-description (string ?o ?l ?á))
+ "o l á"))
+ (should (equal (key-description (unibyte-string ?o ?l ?á))
+ "o l M-a"))
(should (equal (single-key-description 'home)
"<home>"))
(should (equal (single-key-description 'home t)