fixup! Fix tests: Only load mu4e compat code if mu4e-mu-version is bound

This commit is contained in:
Michael Eliachevitch 2023-04-20 03:02:39 +02:00
parent 212abf262f
commit 095f8f1e8b
No known key found for this signature in database
GPG Key ID: 1B8F95C8125DCE31
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@
;; continue supporting loading 1.8 code because mu4e has a C-dependency and is
;; often installed from linux distro package repositories, and therefore can be
;; severely out-of-date.
(if (and (boundp mu4e-mu-version) ; avoid evil-collection unit-tests failing from unbound variable
(if (and (boundp 'mu4e-mu-version) ; avoid evil-collection unit-tests failing from unbound variable
(version< mu4e-mu-version "1.9"))
(require 'evil-collection-mu4e
(expand-file-name "modes/mu4e/evil-collection-mu4e-1.8" evil-collection-base-dir))