diff options
author | Lars Magne Ingebrigtsen <larsi@gnus.org> | 2010-12-13 04:22:39 +0000 |
---|---|---|
committer | Katsumi Yamaoka <yamaoka@jpl.org> | 2010-12-13 04:22:39 +0000 |
commit | 07176b2a9e63a0d3933b167f987475d8a18da5cc (patch) | |
tree | c08db2158e6d76a5469eb69a0e606a248452e067 /lisp/gnus/proto-stream.el | |
parent | fdbb4d85ffa2ac30cb7ac0ceea6f12d0c8054d6c (diff) | |
download | emacs-07176b2a9e63a0d3933b167f987475d8a18da5cc.tar.gz |
proto-stream.el (proto-stream-open-network-only): Fix the calling convention of the network-only option.
gnus-sum.el (gnus-summary-enter-digest-group): Mention gnus-auto-select-on-ephemeral-exit.
Diffstat (limited to 'lisp/gnus/proto-stream.el')
-rw-r--r-- | lisp/gnus/proto-stream.el | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lisp/gnus/proto-stream.el b/lisp/gnus/proto-stream.el index e8df945b946..d1266cb5461 100644 --- a/lisp/gnus/proto-stream.el +++ b/lisp/gnus/proto-stream.el @@ -111,7 +111,12 @@ command to switch on STARTTLS otherwise." greeting capabilities)))) (defun proto-stream-open-network-only (name buffer host service parameters) - (open-network-stream name buffer host service)) + (let ((start (with-current-buffer buffer (point))) + (stream (open-network-stream name buffer host service))) + (list stream + (proto-stream-get-response + stream start (proto-stream-eoc parameters)) + nil))) (defun proto-stream-open-network (name buffer host service parameters) (let* ((start (with-current-buffer buffer (point))) |