* lisp/edmacro.el (edit-kbd-macro): Fix thinko (bug#61333)
This commit is contained in:
parent
88d5327fe2
commit
2273cdb40e
1 changed files with 3 additions and 3 deletions
|
@ -156,9 +156,9 @@ With a prefix argument, format the macro in a more concise way."
|
|||
(setq mac cmd)
|
||||
(setq cmd nil)))
|
||||
(when (kmacro-p mac)
|
||||
(setq mac (kmacro--keys mac)
|
||||
mac-counter (kmacro--counter mac)
|
||||
mac-format (kmacro--format mac)))
|
||||
(setq mac-counter (kmacro--counter mac)
|
||||
mac-format (kmacro--format mac)
|
||||
mac (kmacro--keys mac)))
|
||||
(unless (arrayp mac)
|
||||
(error "Key sequence %s is not a keyboard macro"
|
||||
(key-description keys)))
|
||||
|
|
Loading…
Add table
Reference in a new issue