summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2024-03-21 22:12:40 +0200
committerEli Zaretskii <eliz@gnu.org>2024-03-21 22:12:40 +0200
commite95a8622263d8182e80777f87b7ca52cedbd1b28 (patch)
tree3db88d94d815ca6aed440d6645be79af9a190b63
parentafb7a23e7b914b4c3b72172ae86a5f7e63f2cfde (diff)
downloademacs-e95a8622263d8182e80777f87b7ca52cedbd1b28.tar.gz
; * lisp/keymap.el (key-parse): Fix processing of "[TAB]". (Bug#69893)
-rw-r--r--lisp/keymap.el2
1 files changed, 1 insertions, 1 deletions
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))