mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-26 07:33:47 +00:00
Fix regression in edmacro-finish-edit when parsing "none"
* lisp/edmacro.el (edmacro-finish-edit): Use `kbd' here because we're comparing the result to a string (bug#55372).
This commit is contained in:
parent
4f27e4ff02
commit
f0e08e4914
@ -251,8 +251,7 @@ or nil, use a compact 80-column format."
|
||||
((looking-at "Key:\\(.*\\)$")
|
||||
(when edmacro-store-hook
|
||||
(error "\"Key\" line not allowed in this context"))
|
||||
(let ((key (edmacro-parse-keys
|
||||
(match-string 1))))
|
||||
(let ((key (kbd (match-string 1))))
|
||||
(unless (equal key "")
|
||||
(if (equal key "none")
|
||||
(setq no-keys t)
|
||||
|
Loading…
Reference in New Issue
Block a user