branch: externals/gnorb
commit a512de869fbb3de61225ee243e44bb787070870c
Author: Eric Abrahamsen <[email protected]>
Commit: Stefan Monnier <[email protected]>

    gnorb: Remove weird group-name guard, bump to 1.5.7
    
    * packages/gnorb/gnorb-utils.el (gnorb-msg-id-request-head): I don't
      know why that check was in there, and it causes problems for no
      obvious gain.
    * packages/gnorb/gnorb.el: Bump and flush.
---
 gnorb-utils.el | 8 ++++++--
 gnorb.el       | 2 +-
 2 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/gnorb-utils.el b/gnorb-utils.el
index 3b6c7ab..772e667 100644
--- a/gnorb-utils.el
+++ b/gnorb-utils.el
@@ -516,7 +516,12 @@ methods?"
                                   gnorb-gnus-sent-groups)))
        (while (setq server-group (pop candidates))
          (when (and (stringp server-group)
-                    (string-match-p "+" server-group)
+                    ;; I don't remember the reason for this check,
+                    ;; which is totally fragile and fails on groups
+                    ;; belonging to `gnus-select-method': another
+                    ;; reason why this select method stuff is a mess.
+
+                    ;;(string-match-p "+" server-group)
                     (not
                      (string-match-p
                       "\\(nnir\\|nnvirtual\\|UNKNOWN\\)"
@@ -532,7 +537,6 @@ methods?"
 
 (defun gnorb-collect-ids (&optional id)
   "Collect all Org IDs for a subtree.
-
 Starting with the heading under point (or the heading indicated
 by the ID argument), collect its ID property, and the IDs of all
 child headings."
diff --git a/gnorb.el b/gnorb.el
index 5c47a49..110aa6c 100644
--- a/gnorb.el
+++ b/gnorb.el
@@ -2,7 +2,7 @@
 
 ;; Copyright (C) 2018  Free Software Foundation, Inc.
 
-;; Version: 1.5.6
+;; Version: 1.5.7
 ;; Package-Requires: ((cl-lib "0.5"))
 
 ;; Maintainer: Eric Abrahamsen <[email protected]>

Reply via email to