diff options
| author | Richard M. Stallman | 1997-08-26 22:11:25 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1997-08-26 22:11:25 +0000 |
| commit | cd0f48fcb0ce043a7894932fa762690cb3fd0905 (patch) | |
| tree | be9a60786e0a7900500a349eddfd42dd24775b92 | |
| parent | 37922e6ce5d702f6486871e823db35ccb82582da (diff) | |
| download | emacs-cd0f48fcb0ce043a7894932fa762690cb3fd0905.tar.gz emacs-cd0f48fcb0ce043a7894932fa762690cb3fd0905.zip | |
(gnus-select-method): Change the other ignore-errors.
| -rw-r--r-- | lisp/gnus/gnus.el | 5 |
1 files changed, 3 insertions, 2 deletions
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: | |||
| 775 | (defcustom gnus-select-method | 775 | (defcustom gnus-select-method |
| 776 | (condition-case nil | 776 | (condition-case nil |
| 777 | (nconc | 777 | (nconc |
| 778 | (list 'nntp (or (ignore-errors | 778 | (list 'nntp (or (condition-case nil |
| 779 | (gnus-getenv-nntpserver)) | 779 | (gnus-getenv-nntpserver) |
| 780 | (error nil)) | ||
| 780 | (when (and gnus-default-nntp-server | 781 | (when (and gnus-default-nntp-server |
| 781 | (not (string= gnus-default-nntp-server ""))) | 782 | (not (string= gnus-default-nntp-server ""))) |
| 782 | gnus-default-nntp-server) | 783 | gnus-default-nntp-server) |