Merge changes 1.21 -> 1.22 from main trunk.
authorokazaki <okazaki>
Sat, 24 Feb 2001 22:30:25 +0000 (22:30 +0000)
committerokazaki <okazaki>
Sat, 24 Feb 2001 22:30:25 +0000 (22:30 +0000)
* elmo-util.el (elmo-display-progress): Prefer
`progress-feedback-with-label' to `lprogress-display'.

elmo/elmo-util.el

index c09e8a2..8b7a697 100644 (file)
@@ -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."