From 22404f1ec5dea699b4fbf41f2ad2bd24f2a4150a Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Mon, 22 Jul 2019 19:46:31 +0200 Subject: [PATCH] Fix "nil is not any command *I* know" What good is sass if it isn't right? --- core/core-cli.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/core-cli.el b/core/core-cli.el index a4eb7721b..9ef4d8af0 100644 --- a/core/core-cli.el +++ b/core/core-cli.el @@ -93,7 +93,7 @@ If SHOW-HELP is non-nil, show the documentation for said dispatcher." args (cdr args)))) (let ((fn (doom--dispatch-command cmd))) (unless (fboundp fn) - (user-error "%s is not any command *I* know!" fn)) + (user-error "%S is not any command *I* know!" cmd)) (if show-help (doom--dispatch-help fn args) (let ((start-time (current-time)))