diff options
author | Miles Bader <miles@gnu.org> | 2006-03-03 07:45:27 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 2006-03-03 07:45:27 +0000 |
commit | 719120eff4b070687d146d70133f5f73cc8fe5c4 (patch) | |
tree | f39509608eefa4eb9f11dfb4448b4e06fb33e45a /lisp/gnus/gnus-int.el | |
parent | c99f622718a6bdb6dc5da9965e64ee998e8e16fb (diff) | |
download | emacs-719120eff4b070687d146d70133f5f73cc8fe5c4.tar.gz |
Revision: emacs@sv.gnu.org/emacs--devo--0--patch-134
Merge from gnus--rel--5.10
Patches applied:
* gnus--rel--5.10 (patch 43-48)
- Munge arch explicit ids in etc/images to match Emacs
- Update from CVS
Diffstat (limited to 'lisp/gnus/gnus-int.el')
-rw-r--r-- | lisp/gnus/gnus-int.el | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/lisp/gnus/gnus-int.el b/lisp/gnus/gnus-int.el index b59a3c1530b..8af0aa2cca2 100644 --- a/lisp/gnus/gnus-int.el +++ b/lisp/gnus/gnus-int.el @@ -250,10 +250,12 @@ If it is down, start it up (again)." ;; recurse to open the agent's backend. (setq open-offline (eq gnus-server-unopen-status 'offline)) gnus-server-unopen-status) - ((gnus-y-or-n-p - (format "Unable to open %s:%s, go offline? " - (car gnus-command-method) - (cadr gnus-command-method))) + ((and + (not gnus-batch-mode) + (gnus-y-or-n-p + (format "Unable to open %s:%s, go offline? " + (car gnus-command-method) + (cadr gnus-command-method)))) (setq open-offline t) 'offline) (t |