From 853d5e238d144fa1d39a6745c6203a440bcf737c Mon Sep 17 00:00:00 2001 From: okazaki Date: Wed, 21 Feb 2001 05:57:07 +0000 Subject: [PATCH] * elmo-util.el (elmo-display-progress): Prefer `progress-feedback-with-label' to `lprogress-display'. --- elmo/elmo-util.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/elmo/elmo-util.el b/elmo/elmo-util.el index 55fdc6a..80b1a71 100644 --- a/elmo/elmo-util.el +++ b/elmo/elmo-util.el @@ -1566,10 +1566,10 @@ the value of `foo'." (list 'error-message doc 'error-conditions (cons error conds)))))) -(cond ((fboundp 'lprogress-display) - (defalias 'elmo-display-progress 'lprogress-display)) - ((fboundp 'progress-feedback-with-label) +(cond ((fboundp 'progress-feedback-with-label) (defalias 'elmo-display-progress 'progress-feedback-with-label)) + ((fboundp 'lprogress-display) + (defalias 'elmo-display-progress 'lprogress-display)) (t (defun elmo-display-progress (label format &optional value &rest args) "Print a progress message." -- 1.7.10.4