Skip to content

Commit

Permalink
Fix wrong-type-argument error in helpful-key
Browse files Browse the repository at this point in the history
  • Loading branch information
mmarshall540 authored and Wilfred committed Jun 7, 2024
1 parent a32a5b3 commit a835b7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion helpful.el
Original file line number Diff line number Diff line change
Expand Up @@ -2712,7 +2712,7 @@ See also `helpful-function'."
((null sym)
(user-error "No command is bound to %s"
(key-description key-sequence)))
((commandp sym)
((commandp sym t)
(helpful--update-and-switch-buffer sym t))
(t
(user-error "%s is bound to %s which is not a command"
Expand Down

0 comments on commit a835b7e

Please sign in to comment.