[gnus git] branch master updated: =1= (nnimap-request-group): Avoid double SELECT on `M-g'.
Lars Magne Ingebrigtsen <[email protected]>
| Newsgroups | gmane.emacs.gnus.cvs |
|---|---|
| Message-ID | <[email protected]> |
via 3286715e509f8ca70efd674d59f6c58e16fdf95a (commit)
from 083ce137ac32b948eeb751d7947114d37433168f (commit)
- Log -----------------------------------------------------------------
commit 3286715e509f8ca70efd674d59f6c58e16fdf95a
Author: Lars Magne Ingebrigtsen <[email protected]>
Date: Sun Jan 2 07:36:11 2011 +0100
(nnimap-request-group): Avoid double SELECT on `M-g'.
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 1cf1c44..d15ecdd 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,7 @@
2011-01-02 Lars Magne Ingebrigtsen <[email protected]>
+ * nnimap.el (nnimap-request-group): Avoid double SELECT on `M-g'.
+
* gnus-group.el (gnus-group-kill-group): Don't try to update the group
status is the group clearly is unreachable.
diff --git a/lisp/nnimap.el b/lisp/nnimap.el
index acbb091..1899b0e 100644
--- a/lisp/nnimap.el
+++ b/lisp/nnimap.el
@@ -1,6 +1,6 @@
;;; nnimap.el --- IMAP interface for Gnus
-;; Copyright (C) 2010 Free Software Foundation, Inc.
+;; Copyright (C) 2010, 2011 Free Software Foundation, Inc.
;; Author: Lars Magne Ingebrigtsen <[email protected]>
;; Simon Josefsson <[email protected]>
@@ -639,7 +639,7 @@ textual parts.")
(let ((result (nnimap-possibly-change-group
;; Don't SELECT the group if we're going to select it
;; later, anyway.
- (if (and dont-check
+ (if (and (not dont-check)
(assoc group nnimap-current-infos))
nil
group)
-----------------------------------------------------------------------
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we listed those
revisions in full, above.
Summary of changes:
lisp/ChangeLog | 2 ++
lisp/nnimap.el | 4 ++--
2 files changed, 4 insertions(+), 2 deletions(-)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnus Project".
The branch, master has been updated
hooks/post-receive
--
Gnus Project