From 2e15f6ad1bdf980cfff7e224de9bd20e89b4867d Mon Sep 17 00:00:00 2001 From: ivanbrennan Date: Sat, 17 Apr 2021 10:03:51 -0400 Subject: [PATCH] Fix doom-module-mplist-map obsolete module warning --- 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 ff6aea8a2..3316a69d5 100644 --- a/core/core-modules.el +++ b/core/core-modules.el @@ -288,7 +288,7 @@ those directories. The first returned path is always `doom-private-dir'." (when-let (new (assq module obsolete)) (let ((newkeys (cdr new))) (if (null newkeys) - (message "WARNING %s module was removed" key) + (message "WARNING %s module was removed" (list category module)) (if (cdr newkeys) (message "WARNING %s module was removed and split into the %s modules" (list category module) (mapconcat #'prin1-to-string newkeys ", "))