From a835b7ec59004a13f4a09ff127a785a92b957e8f Mon Sep 17 00:00:00 2001 From: mmarshall540 <62682447+mmarshall540@users.noreply.github.com> Date: Mon, 25 Dec 2023 20:11:05 -0500 Subject: Fix wrong-type-argument error in helpful-key --- helpful.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpful.el b/helpful.el index dd07076..79c9bde 100644 --- a/helpful.el +++ b/helpful.el @@ -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" -- cgit v1.0