]> git.eshelyaron.com Git - emacs.git/commitdiff
; * lisp/keymap.el (key-parse): Fix processing of "[TAB]". (Bug#69893)
authorEli Zaretskii <eliz@gnu.org>
Thu, 21 Mar 2024 20:12:40 +0000 (22:12 +0200)
committerEshel Yaron <me@eshelyaron.com>
Sun, 24 Mar 2024 14:18:02 +0000 (15:18 +0100)
(cherry picked from commit e95a8622263d8182e80777f87b7ca52cedbd1b28)

lisp/keymap.el

index d2544e30ce0f57253c30677f0aed0972d0af3740..b2b475c7d71853f28ccbd6d0f5db0399402088ec 100644 (file)
@@ -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))