Fix nonsensical error if autoloads are missing
`signal` treats its second argument like a list. Passing it a string make it spew out the message as a list of character codes.
This commit is contained in:
parent
90d9fd65b7
commit
d407b3355a
1 changed files with 1 additions and 1 deletions
|
@ -547,7 +547,7 @@ to least)."
|
|||
(warn "Your Doom core autoloads file is missing"))
|
||||
(unless pkg-autoloads-p
|
||||
(warn "Your package autoloads file is missing"))
|
||||
(signal 'doom-autoload-error "Run `bin/doom refresh' to generate them")))
|
||||
(signal 'doom-autoload-error (list "Run `bin/doom refresh' to generate them"))))
|
||||
t))
|
||||
|
||||
(defun doom-initialize-core ()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue