[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/autocrypt 4824fb6e4b 29/94: Recognize Mu4e as MUA
From: |
ELPA Syncer |
Subject: |
[elpa] externals/autocrypt 4824fb6e4b 29/94: Recognize Mu4e as MUA |
Date: |
Sun, 26 Mar 2023 07:57:58 -0400 (EDT) |
branch: externals/autocrypt
commit 4824fb6e4b0a4fe5cfa7b30c5cd5a47cc2999f20
Author: Thierry Volpiatto <thievol@posteo.net>
Commit: Philip K <philipk@posteo.net>
Recognize Mu4e as MUA
mu4e is often used with mu4e-view-gnus option that display mail in a
gnus derived mode buffer, in this case gnus is always used and mu4e
skipped, this patch allows not missing mu4e by chnaging order of cond
clauses.
---
autocrypt.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/autocrypt.el b/autocrypt.el
index e3a27135d2..97e88c1bd5 100644
--- a/autocrypt.el
+++ b/autocrypt.el
@@ -156,14 +156,14 @@ the part contents can be found.")
The key should identify a record in the
`autocrypt-mua-func-alist' alist."
(cond
+ ((derived-mode-p 'mu4e-main-mode 'mu4e-view-mode)
+ 'mu4e)
((derived-mode-p 'gnus-mode)
'gnus)
((derived-mode-p 'rmail-mode)
'rmail)
((derived-mode-p 'message-mode)
'message)
- ((derived-mode-p 'mu4e-main-mode 'mu4e-view-mode)
- 'mu4e)
(t (user-error "MUA not supported: %s" major-mode))))
(defsubst autocrypt-mua-func (msg)
- [elpa] externals/autocrypt 373194a318 03/94: added license, (continued)
- [elpa] externals/autocrypt 373194a318 03/94: added license, ELPA Syncer, 2023/03/26
- [elpa] externals/autocrypt 5fec39262e 05/94: updated minimal package requirement, ELPA Syncer, 2023/03/26
- [elpa] externals/autocrypt a56b2806f3 08/94: fixed undefined autocrypt-list-recipients bug, ELPA Syncer, 2023/03/26
- [elpa] externals/autocrypt 1491d9de1e 07/94: fixed checkdoc complaints, ELPA Syncer, 2023/03/26
- [elpa] externals/autocrypt dae7c32262 15/94: turned autoload calls into autoload comments, ELPA Syncer, 2023/03/26
- [elpa] externals/autocrypt b903929bf3 17/94: reindented autocrypt-list-recipients, ELPA Syncer, 2023/03/26
- [elpa] externals/autocrypt f970fb51c8 19/94: added melpa link to readme, ELPA Syncer, 2023/03/26
- [elpa] externals/autocrypt a0b03bd459 25/94: removed version tag from autocrypt group, ELPA Syncer, 2023/03/26
- [elpa] externals/autocrypt a16bf93ba8 26/94: made autocrypt-gossip-p depend on autocrypt-do-gossip, ELPA Syncer, 2023/03/26
- [elpa] externals/autocrypt 73d21d9de9 27/94: replaced write-file with write-region, ELPA Syncer, 2023/03/26
- [elpa] externals/autocrypt 4824fb6e4b 29/94: Recognize Mu4e as MUA,
ELPA Syncer <=
- [elpa] externals/autocrypt 2f9f3ee4c6 31/94: Add major-mode indicator to autocrypt file, ELPA Syncer, 2023/03/26
- [elpa] externals/autocrypt 050d496716 32/94: Fix mu4e setup when composing new messages, ELPA Syncer, 2023/03/26
- [elpa] externals/autocrypt 1dc4e59833 56/94: Update public-inbox URL, ELPA Syncer, 2023/03/26
- [elpa] externals/autocrypt 32786dc552 68/94: Prevent signalling error when get-part is not defined, ELPA Syncer, 2023/03/26
- [elpa] externals/autocrypt 8fcf874d04 63/94: Add autocrypt-message--remove-header, ELPA Syncer, 2023/03/26
- [elpa] externals/autocrypt b2c8d431f8 69/94: Fix assoc usage, ELPA Syncer, 2023/03/26
- [elpa] externals/autocrypt 00b87a82c4 75/94: Change maintainer address to public inbox, ELPA Syncer, 2023/03/26
- [elpa] externals/autocrypt 599d5f3f5d 78/94: Further improve robustness of autocrypt-process-header, ELPA Syncer, 2023/03/26
- [elpa] externals/autocrypt 5fae83ac05 80/94: Inline autocrypt-find-function, ELPA Syncer, 2023/03/26
- [elpa] externals/autocrypt dd400cbbdf 82/94: Prefer mu4e-view-rendered-hook if bound, ELPA Syncer, 2023/03/26