1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-02-21 23:50:36 -08:00

(gnus-select-method): Change the other ignore-errors.

This commit is contained in:
Richard M. Stallman 1997-08-26 22:11:25 +00:00
parent 37922e6ce5
commit cd0f48fcb0

View file

@ -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)