gnus-try-warping-via-registry: [bugfix] don't act as though you've found the article...
authorDave Abrahams <dave@boostpro.com>
Mon, 20 Aug 2012 02:44:57 +0000 (22:44 -0400)
committerDave Abrahams <dave@boostpro.com>
Wed, 29 Aug 2012 17:48:11 +0000 (10:48 -0700)
lisp/gnus-registry.el

index 8aecc98..71e0096 100644 (file)
@@ -1169,9 +1169,10 @@ data stored in the registry."
 
             ;; Try to activate the group.  If that fails, just move
             ;; along.  We may have more groups to work with
 
             ;; Try to activate the group.  If that fails, just move
             ;; along.  We may have more groups to work with
-            (ignore-errors
-             (gnus-select-group-with-message-id group message-id))
-            (throw 'found t)))))))
+            (when
+                (ignore-errors
+                  (gnus-select-group-with-message-id group message-id) t)
+              (throw 'found t))))))))
 
 ;; TODO: a few things
 
 
 ;; TODO: a few things