branch: externals/mpdired commit a1d613a6d5b3bd819a1afdc24e4ef2ad70e61f6d Author: Manuel Giraud <man...@ledu-giraud.fr> Commit: Manuel Giraud <man...@ledu-giraud.fr>
invert progression --- mpdired.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mpdired.el b/mpdired.el index 0a2117d94a..8ebac519a9 100644 --- a/mpdired.el +++ b/mpdired.el @@ -517,7 +517,7 @@ used for mark followed by a space." (let* ((bol (mpdired--bol)) (eol (line-end-position)) (x (/ (* elapsed (- eol bol)) duration))) - (put-text-property bol (+ bol x) 'face 'mpdired-progress)))) + (put-text-property (+ bol x) eol 'face 'mpdired-progress)))) ;; Go to bol no matter what (goto-char (mpdired--bol)) ;; Set mode, restore point and memorize stuff