From 4dd7efe71a64557334dede873354d98631a5bdea Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Wed, 25 May 2022 17:53:20 +0200 Subject: [PATCH] Ensure dash is loaded before its functions are used Emacs otherwise complains about an undefined -difference function in the use-package declaration of mm-decode. --- init.el | 1 + 1 file changed, 1 insertion(+) diff --git a/init.el b/init.el index ef2da14..a79acef 100644 --- a/init.el +++ b/init.el @@ -586,6 +586,7 @@ ;; * Essential external packages (use-package dash + :defer nil :config (progn (global-dash-fontify-mode) (dash-register-info-lookup)))