From: Richard M. Stallman Date: Tue, 26 Aug 1997 22:11:25 +0000 (+0000) Subject: (gnus-select-method): Change the other ignore-errors. X-Git-Tag: emacs-20.1~388 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=cd0f48fcb0ce043a7894932fa762690cb3fd0905;p=emacs.git (gnus-select-method): Change the other ignore-errors. --- diff --git a/lisp/gnus/gnus.el b/lisp/gnus/gnus.el index e73b3f4438a..0d73ceecbfe 100644 --- a/lisp/gnus/gnus.el +++ b/lisp/gnus/gnus.el @@ -775,8 +775,9 @@ used to 899, you would say something along these lines: (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)