Skip to content

Commit 9860a7a

Browse files
authored
Correct unused lexical variable (#411)
1 parent 8754857 commit 9860a7a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

meow-command.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1636,7 +1636,7 @@ This command is a replacement for built-in `kmacro-end-macro'."
16361636
(interactive (list (help--read-key-sequence)))
16371637
(if (= 1 (length key-list))
16381638
(let* ((key (format-kbd-macro (cdar key-list)))
1639-
(cmd (key-binding (cdar key-list))))
1639+
(cmd (key-binding key)))
16401640
(if-let ((dispatch (and (commandp cmd)
16411641
(get cmd 'meow-dispatch))))
16421642
(describe-key (kbd dispatch) buffer up-event)

0 commit comments

Comments
 (0)