diff options
author | Andreas Schwab <schwab@linux-m68k.org> | 2016-02-12 11:41:29 +0100 |
---|---|---|
committer | Andreas Schwab <schwab@linux-m68k.org> | 2016-02-12 11:41:29 +0100 |
commit | 85a2753d96c5316f63eca20759fc9a1126545ad7 (patch) | |
tree | 924f4ffc5a8d5b12928a34f5c5a9075f2bcc2bd4 /lisp/gnus/nnimap.el | |
parent | e8e3bd0ff020b2edf6bd8955de97e45837ef98d4 (diff) | |
download | emacs-85a2753d96c5316f63eca20759fc9a1126545ad7.tar.gz emacs-85a2753d96c5316f63eca20759fc9a1126545ad7.tar.bz2 emacs-85a2753d96c5316f63eca20759fc9a1126545ad7.zip |
Revert "Fix gnus-group-get-new-news-this-group on group with closed server"
This reverts commit 9dc77e37aa84c6df9b3ddb4609f3c09201b0580e.
* lisp/gnus/nnimap.el (nnimap-change-group): Revert last
change. (Bug#22634)
Diffstat (limited to 'lisp/gnus/nnimap.el')
-rw-r--r-- | lisp/gnus/nnimap.el | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lisp/gnus/nnimap.el b/lisp/gnus/nnimap.el index 130658cd367..c285befc760 100644 --- a/lisp/gnus/nnimap.el +++ b/lisp/gnus/nnimap.el @@ -1831,9 +1831,7 @@ Return the server's response to the SELECT or EXAMINE command." (let ((open-result t)) (when (and server (not (nnimap-server-opened server))) - (let ((method (gnus-server-to-method server))) - (setq open-result (nnimap-open-server (nth 1 method) (nthcdr 2 method) - no-reconnect)))) + (setq open-result (nnimap-open-server server nil no-reconnect))) (cond ((not open-result) nil) |