diff options
| author | Stefan Monnier | 2012-05-01 14:37:21 -0400 |
|---|---|---|
| committer | Stefan Monnier | 2012-05-01 14:37:21 -0400 |
| commit | c8f8221fd15ea7fdc3e7abb35f7d39b949c3acb9 (patch) | |
| tree | 8b7da9c7513476e43256d6c7f8342bd4751d084d | |
| parent | b593d6a999b21dfee6939b24866a5ec6fbe7d11b (diff) | |
| download | emacs-c8f8221fd15ea7fdc3e7abb35f7d39b949c3acb9.tar.gz emacs-c8f8221fd15ea7fdc3e7abb35f7d39b949c3acb9.zip | |
* lisp/gnus/nnimap.el (nnimap-open-connection-1): Don't leave an "opening..."
message once it's actually open.
| -rw-r--r-- | lisp/gnus/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/gnus/nnimap.el | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index cacd20ce99d..4938336742a 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2012-05-01 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | * nnimap.el (nnimap-open-connection-1): Don't leave an "opening..." | ||
| 4 | message once it's actually open. | ||
| 5 | |||
| 1 | 2012-04-28 Stefan Monnier <monnier@iro.umontreal.ca> | 6 | 2012-04-28 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 7 | ||
| 3 | * auth-source.el (auth-source--aput-1, auth-source--aput) | 8 | * auth-source.el (auth-source--aput-1, auth-source--aput) |
diff --git a/lisp/gnus/nnimap.el b/lisp/gnus/nnimap.el index f978b8c9906..114d83b7286 100644 --- a/lisp/gnus/nnimap.el +++ b/lisp/gnus/nnimap.el | |||
| @@ -475,6 +475,8 @@ textual parts.") | |||
| 475 | (when nnimap-object | 475 | (when nnimap-object |
| 476 | (when (nnimap-capability "QRESYNC") | 476 | (when (nnimap-capability "QRESYNC") |
| 477 | (nnimap-command "ENABLE QRESYNC")) | 477 | (nnimap-command "ENABLE QRESYNC")) |
| 478 | (nnheader-message 7 "Opening connection to %s...done" | ||
| 479 | nnimap-address) | ||
| 478 | (nnimap-process nnimap-object)))))))) | 480 | (nnimap-process nnimap-object)))))))) |
| 479 | 481 | ||
| 480 | (autoload 'rfc2104-hash "rfc2104") | 482 | (autoload 'rfc2104-hash "rfc2104") |