From 4ce6db312c74e37f22edeb1aeeb06bfef55b11d8 Mon Sep 17 00:00:00 2001 From: okazaki Date: Sat, 24 Feb 2001 22:30:25 +0000 Subject: [PATCH] Merge changes 1.21 -> 1.22 from main trunk. * 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 c09e8a2..8b7a697 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