From 8e3f7ba64a8bc3afcff3172e8fe44a6ac1010f20 Mon Sep 17 00:00:00 2001 From: Christophe Troestler Date: Mon, 27 Jan 2020 15:24:39 +0100 Subject: [PATCH] Load gnus-art when compiling Commit edce6354160eccaf7559e038996421f7e5a885ec only loads it dynamically when executing the function mu4e~view-gnus but as a consequence many variables are undefined at compile time and, more importantly, it is no longer possible to override the variable gnus-display-mime-function with a let binding before calling gnus-article-prepare-display --- mu4e/mu4e-view.el | 1 + 1 file changed, 1 insertion(+) diff --git a/mu4e/mu4e-view.el b/mu4e/mu4e-view.el index a58b28c1..570e3192 100644 --- a/mu4e/mu4e-view.el +++ b/mu4e/mu4e-view.el @@ -35,6 +35,7 @@ (require 'mu4e-actions) (require 'mu4e-message) +(eval-when-compile (require 'gnus-art)) (require 'comint) (require 'browse-url) (require 'button)