1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-06 14:30:50 -08:00

; * lisp/keymap.el (key-parse): Fix processing of "[TAB]". (Bug#69893)

This commit is contained in:
Eli Zaretskii 2024-03-21 22:12:40 +02:00
parent afb7a23e7b
commit e95a862226

View file

@ -260,7 +260,7 @@ returned by \\[describe-key] (`describe-key')."
(setq word (concat (match-string 1 word) (setq word (concat (match-string 1 word)
(match-string 3 word))) (match-string 3 word)))
(not (string-match (not (string-match
"\\<\\(NUL\\|RET\\|LFD\\|ESC\\|SPC\\|DEL\\)$" "\\<\\(NUL\\|RET\\|LFD\\|TAB\\|ESC\\|SPC\\|DEL\\)$"
word)))) word))))
(setq key (list (intern word)))) (setq key (list (intern word))))
((or (equal word "REM") (string-match "^;;" word)) ((or (equal word "REM") (string-match "^;;" word))