From: Eli Zaretskii Date: Thu, 21 Mar 2024 20:12:40 +0000 (+0200) Subject: ; * lisp/keymap.el (key-parse): Fix processing of "[TAB]". (Bug#69893) X-Git-Tag: archive/raspbian/1%29.4+1-4+rpi1~1^2~2^2~18^2~11 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=e95a8622263d8182e80777f87b7ca52cedbd1b28;p=emacs.git ; * lisp/keymap.el (key-parse): Fix processing of "[TAB]". (Bug#69893) --- diff --git a/lisp/keymap.el b/lisp/keymap.el index 065c59da74c..4bdf65d39fa 100644 --- a/lisp/keymap.el +++ b/lisp/keymap.el @@ -260,7 +260,7 @@ returned by \\[describe-key] (`describe-key')." (setq word (concat (match-string 1 word) (match-string 3 word))) (not (string-match - "\\<\\(NUL\\|RET\\|LFD\\|ESC\\|SPC\\|DEL\\)$" + "\\<\\(NUL\\|RET\\|LFD\\|TAB\\|ESC\\|SPC\\|DEL\\)$" word)))) (setq key (list (intern word)))) ((or (equal word "REM") (string-match "^;;" word))