mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-03 12:27:26 -05:00
Don't return anything from set! on failure
This commit is contained in:
@ -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
|
||||||
|
Reference in New Issue
Block a user