diff options
| author | Andrew Innes | 1998-12-14 09:03:04 +0000 |
|---|---|---|
| committer | Andrew Innes | 1998-12-14 09:03:04 +0000 |
| commit | 2602d1eaacb3a11b24e5ab0ab4d95a8c84af19a0 (patch) | |
| tree | 8ae86e7bab7a69217c7282ba6f8a6137e4d56df5 | |
| parent | 3e9103768f83da3e27987071468c2ea012c24e31 (diff) | |
| download | emacs-2602d1eaacb3a11b24e5ab0ab4d95a8c84af19a0.tar.gz emacs-2602d1eaacb3a11b24e5ab0ab4d95a8c84af19a0.zip | |
(nntp-request-group): Undo previous change (4xx and 5xx responses are
already handled properly).
| -rw-r--r-- | lisp/gnus/nntp.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/gnus/nntp.el b/lisp/gnus/nntp.el index f92166ad214..0812be9917d 100644 --- a/lisp/gnus/nntp.el +++ b/lisp/gnus/nntp.el | |||
| @@ -603,7 +603,7 @@ server there that you can connect to. See also `nntp-open-connection-function'" | |||
| 603 | 603 | ||
| 604 | (deffoo nntp-request-group (group &optional server dont-check) | 604 | (deffoo nntp-request-group (group &optional server dont-check) |
| 605 | (nntp-possibly-change-group nil server) | 605 | (nntp-possibly-change-group nil server) |
| 606 | (when (nntp-send-command "^[245].*\n" "GROUP" group) | 606 | (when (nntp-send-command "^2.*\n" "GROUP" group) |
| 607 | (let ((entry (nntp-find-connection-entry nntp-server-buffer))) | 607 | (let ((entry (nntp-find-connection-entry nntp-server-buffer))) |
| 608 | (setcar (cddr entry) group)))) | 608 | (setcar (cddr entry) group)))) |
| 609 | 609 | ||