From: Andrew Innes Date: Mon, 14 Dec 1998 09:03:04 +0000 (+0000) Subject: (nntp-request-group): Undo previous change (4xx and 5xx responses are X-Git-Tag: emacs-20.4~1079 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2602d1eaacb3a11b24e5ab0ab4d95a8c84af19a0;p=emacs.git (nntp-request-group): Undo previous change (4xx and 5xx responses are already handled properly). --- 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))))