Don't return anything from set! on failure
This commit is contained in:
parent
cbfb3eeda4
commit
383d7dbddb
1 changed files with 2 additions and 1 deletions
|
@ -239,7 +239,8 @@ executed when called with `set!'. FORMS are not evaluated until `set!' calls it.
|
||||||
(if fn
|
(if fn
|
||||||
(apply fn values)
|
(apply fn values)
|
||||||
(when doom-debug-mode
|
(when doom-debug-mode
|
||||||
(message "No setting found for %s" keyword)))))
|
(message "No setting found for %s" keyword)
|
||||||
|
nil))))
|
||||||
|
|
||||||
(provide 'core-lib)
|
(provide 'core-lib)
|
||||||
;;; core-lib.el ends here
|
;;; core-lib.el ends here
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue