summaryrefslogtreecommitdiff
path: root/lisp/gnus
diff options
context:
space:
mode:
authorAndrew Innes <andrewi@gnu.org>1998-12-14 09:03:04 +0000
committerAndrew Innes <andrewi@gnu.org>1998-12-14 09:03:04 +0000
commit2602d1eaacb3a11b24e5ab0ab4d95a8c84af19a0 (patch)
tree8ae86e7bab7a69217c7282ba6f8a6137e4d56df5 /lisp/gnus
parent3e9103768f83da3e27987071468c2ea012c24e31 (diff)
downloademacs-2602d1eaacb3a11b24e5ab0ab4d95a8c84af19a0.tar.gz
(nntp-request-group): Undo previous change (4xx and 5xx responses are
already handled properly).
Diffstat (limited to 'lisp/gnus')
-rw-r--r--lisp/gnus/nntp.el2
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'"
(deffoo nntp-request-group (group &optional server dont-check)
(nntp-possibly-change-group nil server)
- (when (nntp-send-command "^[245].*\n" "GROUP" group)
+ (when (nntp-send-command "^2.*\n" "GROUP" group)
(let ((entry (nntp-find-connection-entry nntp-server-buffer)))
(setcar (cddr entry) group))))