mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-03 12:27:26 -05:00
Fix "nil is not any command *I* know"
What good is sass if it isn't right?
This commit is contained in:
@ -93,7 +93,7 @@ If SHOW-HELP is non-nil, show the documentation for said dispatcher."
|
|||||||
args (cdr args))))
|
args (cdr args))))
|
||||||
(let ((fn (doom--dispatch-command cmd)))
|
(let ((fn (doom--dispatch-command cmd)))
|
||||||
(unless (fboundp fn)
|
(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
|
(if show-help
|
||||||
(doom--dispatch-help fn args)
|
(doom--dispatch-help fn args)
|
||||||
(let ((start-time (current-time)))
|
(let ((start-time (current-time)))
|
||||||
|
Reference in New Issue
Block a user