From a9e3c5be010ed4f1f9cde0b4e83118c13a055d62 Mon Sep 17 00:00:00 2001 From: yamaoka Date: Wed, 27 Oct 2004 01:48:24 +0000 Subject: [PATCH] Synch to No Gnus 200410270147. --- lisp/ChangeLog | 5 +++++ lisp/gnus-start.el | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index e6eedc4..8a0503f 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2004-10-27 Katsumi Yamaoka + + * gnus-start.el (gnus-check-reasonable-setup): Use fboundp instead + of boundp to check if display-warning is available. + 2004-10-26 Teodor Zlatanov * nnimap.el (nnimap-open-connection): fixed prog1/prog2 bug diff --git a/lisp/gnus-start.el b/lisp/gnus-start.el index 4c06c79..d78238d 100644 --- a/lisp/gnus-start.el +++ b/lisp/gnus-start.el @@ -3288,7 +3288,7 @@ Would otherwise be an alias for `display-time-event-handler'." nil)))) (defun gnus-check-reasonable-setup () ;; Check whether nnml and nnfolder share a directory. (let ((display-warn - (if (boundp 'display-warning) + (if (fboundp 'display-warning) 'display-warning (lambda (type message) (if noninteractive -- 1.7.10.4