diff options
author | Andrew Innes <andrewi@gnu.org> | 1998-11-20 23:54:16 +0000 |
---|---|---|
committer | Andrew Innes <andrewi@gnu.org> | 1998-11-20 23:54:16 +0000 |
commit | 01215c1f353ba250081ce53b23820914122f9bf7 (patch) | |
tree | f1f5432426c6138a3821b7abca37dc88bd5f750e /lisp/gnus/nntp.el | |
parent | bacd83a703ab52a6d827a72f3c7d7d946503a777 (diff) | |
download | emacs-01215c1f353ba250081ce53b23820914122f9bf7.tar.gz |
(nntp-request-group): Allow for failures when requesting a new group.
Diffstat (limited to 'lisp/gnus/nntp.el')
-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 0812be9917d..f92166ad214 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 "^2.*\n" "GROUP" group) + (when (nntp-send-command "^[245].*\n" "GROUP" group) (let ((entry (nntp-find-connection-entry nntp-server-buffer))) (setcar (cddr entry) group)))) |