aboutsummaryrefslogtreecommitdiff
path: root/modules/mu4e-org-contacts-integration.el
diff options
context:
space:
mode:
Diffstat (limited to 'modules/mu4e-org-contacts-integration.el')
-rw-r--r--modules/mu4e-org-contacts-integration.el7
1 files changed, 5 insertions, 2 deletions
diff --git a/modules/mu4e-org-contacts-integration.el b/modules/mu4e-org-contacts-integration.el
index 7fe89389..8ffdccd2 100644
--- a/modules/mu4e-org-contacts-integration.el
+++ b/modules/mu4e-org-contacts-integration.el
@@ -7,8 +7,11 @@
;;; Code:
-(require 'mu4e)
-(require 'org-contacts)
+;; Both deps are optional at file-load time. The functions defined here only
+;; fire from mu4e/org-msg compose hooks, so a missing package means the
+;; activation call is a no-op rather than a load-time error.
+(require 'mu4e nil t)
+(require 'org-contacts nil t)
;; ---------------------- Completion at Point Function -------------------------