[Backport] lisp/gnus/nnimap.el (nnimap-wait-for-response): Ignore NOOP response requested to keep connection open
This commit is contained in:
parent
f399929938
commit
b13ccfca85
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2014-10-27 enami tsugutomo <tsugutomo.enami@jp.sony.com>
|
||||
|
||||
* nnimap.el (nnimap-wait-for-response): Ignore NOOP response requested
|
||||
to keep connection open (bug#18728).
|
||||
|
||||
2014-10-20 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* Version 24.4 released.
|
||||
|
|
|
@ -1872,7 +1872,7 @@ Return the server's response to the SELECT or EXAMINE command."
|
|||
(while (and (not (bobp))
|
||||
(progn
|
||||
(forward-line -1)
|
||||
(looking-at "\\*"))))
|
||||
(looking-at "\\*\\|[0-9]+ OK NOOP"))))
|
||||
(not (looking-at (format "%d .*\n" sequence)))))
|
||||
(when messagep
|
||||
(nnheader-message-maybe
|
||||
|
|
Loading…
Add table
Reference in a new issue