; * lisp/keymap.el (key-parse): Fix processing of "[TAB]". (Bug#69893)
This commit is contained in:
parent
afb7a23e7b
commit
e95a862226
1 changed files with 1 additions and 1 deletions
|
@ -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))
|
||||
|
|
Loading…
Add table
Reference in a new issue