Fix "nil is not any command *I* know"

What good is sass if it isn't right?
This commit is contained in:
Henrik Lissner 2019-07-22 19:46:31 +02:00
parent 88813ff196
commit 22404f1ec5
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395

View file

@ -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)))