diff lisp/gnus/gnus.el @ 19560:419378c3b93f

(gnus-select-method): Change the other ignore-errors.
author Richard M. Stallman <rms@gnu.org>
date Tue, 26 Aug 1997 22:11:25 +0000
parents f7cceca576e3
children 5f1ab3dd344d
line wrap: on
line diff
--- a/lisp/gnus/gnus.el	Tue Aug 26 18:13:31 1997 +0000
+++ b/lisp/gnus/gnus.el	Tue Aug 26 22:11:25 1997 +0000
@@ -775,8 +775,9 @@
 (defcustom gnus-select-method
   (condition-case nil
     (nconc
-     (list 'nntp (or (ignore-errors
-		       (gnus-getenv-nntpserver))
+     (list 'nntp (or (condition-case nil
+			 (gnus-getenv-nntpserver)
+		       (error nil))
 		     (when (and gnus-default-nntp-server
 				(not (string= gnus-default-nntp-server "")))
 		       gnus-default-nntp-server)