branch: externals/autocrypt
commit 4b87cc8cc19a13bb158226d7eb3f2968ceb62c00
Author: Philip K <[email protected]>
Commit: Philip K <[email protected]>

    fixed byte-compilation issues
---
 autocrypt-message.el | 2 +-
 autocrypt-rmail.el   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/autocrypt-message.el b/autocrypt-message.el
index e8286172ab..edec7d28cd 100644
--- a/autocrypt-message.el
+++ b/autocrypt-message.el
@@ -87,7 +87,7 @@ Will handle and remove \"Do-(Discourage-)Autocrypt\" if 
found."
     (when (autocrypt-message-gossip-p recs)
       (let ((buf (generate-new-buffer " *autocrypt gossip*")))
         (with-current-buffer buf
-          (dolist (addr (autocrypt-message-list-recipients))
+          (dolist (addr (autocrypt-list-recipients))
             (let ((header (autocrypt-generate-header addr t)))
               (insert "Autocrypt-Gossip: " header "\n"))))
         (mml-attach-buffer buf)
diff --git a/autocrypt-rmail.el b/autocrypt-rmail.el
index 662091421e..f80d72f331 100644
--- a/autocrypt-rmail.el
+++ b/autocrypt-rmail.el
@@ -37,4 +37,4 @@
   "Ask Rmail to return header field."
   (rmail-apply-in-message
    rmail-current-message
-   (lambda () (mail-fetch-field field)))))
+   (lambda () (mail-fetch-field field))))

Reply via email to