diff options
| author | Lars Magne Ingebrigtsen | 2010-12-13 04:22:39 +0000 |
|---|---|---|
| committer | Katsumi Yamaoka | 2010-12-13 04:22:39 +0000 |
| commit | 07176b2a9e63a0d3933b167f987475d8a18da5cc (patch) | |
| tree | c08db2158e6d76a5469eb69a0e606a248452e067 | |
| parent | fdbb4d85ffa2ac30cb7ac0ceea6f12d0c8054d6c (diff) | |
| download | emacs-07176b2a9e63a0d3933b167f987475d8a18da5cc.tar.gz emacs-07176b2a9e63a0d3933b167f987475d8a18da5cc.zip | |
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.
| -rw-r--r-- | lisp/gnus/ChangeLog | 8 | ||||
| -rw-r--r-- | lisp/gnus/gnus-sum.el | 7 | ||||
| -rw-r--r-- | lisp/gnus/proto-stream.el | 7 |
3 files changed, 19 insertions, 3 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 2ff18436ed6..d39f5330fd3 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,3 +1,11 @@ | |||
| 1 | 2010-12-13 Lars Magne Ingebrigtsen <larsi@gnus.org> | ||
| 2 | |||
| 3 | * gnus-sum.el (gnus-summary-enter-digest-group): Mention | ||
| 4 | gnus-auto-select-on-ephemeral-exit. | ||
| 5 | |||
| 6 | * proto-stream.el (proto-stream-open-network-only): Fix the calling | ||
| 7 | convention of the network-only option. | ||
| 8 | |||
| 1 | 2010-12-10 Lars Magne Ingebrigtsen <larsi@gnus.org> | 9 | 2010-12-10 Lars Magne Ingebrigtsen <larsi@gnus.org> |
| 2 | 10 | ||
| 3 | * proto-stream.el (proto-stream-open-network-only): New function to | 11 | * proto-stream.el (proto-stream-open-network-only): New function to |
diff --git a/lisp/gnus/gnus-sum.el b/lisp/gnus/gnus-sum.el index 1bb4b4a6895..a0217283757 100644 --- a/lisp/gnus/gnus-sum.el +++ b/lisp/gnus/gnus-sum.el | |||
| @@ -8982,8 +8982,11 @@ variable." | |||
| 8982 | 8982 | ||
| 8983 | (defun gnus-summary-enter-digest-group (&optional force) | 8983 | (defun gnus-summary-enter-digest-group (&optional force) |
| 8984 | "Enter an nndoc group based on the current article. | 8984 | "Enter an nndoc group based on the current article. |
| 8985 | If FORCE, force a digest interpretation. If not, try | 8985 | If FORCE, force a digest interpretation. If not, try to guess |
| 8986 | to guess what the document format is." | 8986 | what the document format is. |
| 8987 | |||
| 8988 | To control what happens when you exit the group, see the | ||
| 8989 | `gnus-auto-select-on-ephemeral-exit' variable." | ||
| 8987 | (interactive "P") | 8990 | (interactive "P") |
| 8988 | (let ((conf gnus-current-window-configuration)) | 8991 | (let ((conf gnus-current-window-configuration)) |
| 8989 | (save-window-excursion | 8992 | (save-window-excursion |
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." | |||
| 111 | greeting capabilities)))) | 111 | greeting capabilities)))) |
| 112 | 112 | ||
| 113 | (defun proto-stream-open-network-only (name buffer host service parameters) | 113 | (defun proto-stream-open-network-only (name buffer host service parameters) |
| 114 | (open-network-stream name buffer host service)) | 114 | (let ((start (with-current-buffer buffer (point))) |
| 115 | (stream (open-network-stream name buffer host service))) | ||
| 116 | (list stream | ||
| 117 | (proto-stream-get-response | ||
| 118 | stream start (proto-stream-eoc parameters)) | ||
| 119 | nil))) | ||
| 115 | 120 | ||
| 116 | (defun proto-stream-open-network (name buffer host service parameters) | 121 | (defun proto-stream-open-network (name buffer host service parameters) |
| 117 | (let* ((start (with-current-buffer buffer (point))) | 122 | (let* ((start (with-current-buffer buffer (point))) |