From d874f628bb0ba0d15469a16728105deee88ae14c Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Sun, 24 Jun 2018 19:45:24 +0200 Subject: [PATCH] Prefix non-existent module message with Warning: Because it's a warning, not an error, and life goes on. --- core/core-modules.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/core-modules.el b/core/core-modules.el index b19a58c12..e3d496770 100644 --- a/core/core-modules.el +++ b/core/core-modules.el @@ -278,7 +278,7 @@ to least)." (throw 'doom-modules t)))) (let ((path (doom-module-locate-path category module))) (if (not path) - (message "Couldn't find the %s %s module" category module) + (message "Warning: couldn't find the %s %s module" category module) (let ((key (cons category module))) (doom-module-set category module :flags flags :path path) (push `(let ((doom--current-module ',key))