]> git.eshelyaron.com Git - emacs.git/commitdiff
(nntp-request-group): Undo previous change (4xx and 5xx responses are
authorAndrew Innes <andrewi@gnu.org>
Mon, 14 Dec 1998 09:03:04 +0000 (09:03 +0000)
committerAndrew Innes <andrewi@gnu.org>
Mon, 14 Dec 1998 09:03:04 +0000 (09:03 +0000)
already handled properly).

lisp/gnus/nntp.el

index f92166ad21448009654da96aa3ecf2c91d052ecb..0812be9917de86b11e53c93583162550edc58152 100644 (file)
@@ -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))))