branch: externals/gnorb
commit dfb2acdbaef07fa5d7f017a7e402533729bc13b5
Author: Eric Abrahamsen <[email protected]>
Commit: Stefan Monnier <[email protected]>
Bug fix in mail tracking extraction
* packages/gnorb/gnorb-org.el (gnorb-org-extract-mail-tracking): Had
the logic exactly backwards.
* packages/gnorb/gnorb.el: Bump version.
---
gnorb-org.el | 2 +-
gnorb.el | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnorb-org.el b/gnorb-org.el
index 51eb715..7e42cb8 100644
--- a/gnorb-org.el
+++ b/gnorb-org.el
@@ -251,7 +251,7 @@ See the docstring of `gnorb-org-handle-mail' for details."
(when assoc-msg-ids
(car
(sort
- (cl-remove-if
+ (cl-remove-if-not
(lambda (m)
(let ((from (car (gnus-registry-get-id-key m 'sender))))
(and from
diff --git a/gnorb.el b/gnorb.el
index 3048ffd..ba3e663 100644
--- a/gnorb.el
+++ b/gnorb.el
@@ -2,7 +2,7 @@
;; Copyright (C) 2014 Free Software Foundation, Inc.
-;; Version: 1.2.1
+;; Version: 1.2.2
;; Package-Requires: ((cl-lib "0.5"))
;; Maintainer: Eric Abrahamsen <[email protected]>