Skip to content

Commit a835b7e

Browse files
mmarshall540Wilfred
authored andcommitted
Fix wrong-type-argument error in helpful-key
1 parent a32a5b3 commit a835b7e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

helpful.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2712,7 +2712,7 @@ See also `helpful-function'."
27122712
((null sym)
27132713
(user-error "No command is bound to %s"
27142714
(key-description key-sequence)))
2715-
((commandp sym)
2715+
((commandp sym t)
27162716
(helpful--update-and-switch-buffer sym t))
27172717
(t
27182718
(user-error "%s is bound to %s which is not a command"

0 commit comments

Comments
 (0)