branch: externals/mpdired commit d16a87a0f0dd6690b4b156762420066ac5811eaf Author: Manuel Giraud <man...@ledu-giraud.fr> Commit: Manuel Giraud <man...@ledu-giraud.fr>
explicit stopped --- mpdired.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/mpdired.el b/mpdired.el index 1cc45db577..0d9cba3245 100644 --- a/mpdired.el +++ b/mpdired.el @@ -324,12 +324,12 @@ (random (nth 3 status)) (single (nth 4 status)) (consume (nth 5 status)) - (string (cond ((string= "stop" state) "") - ((string= "play" state) "Playing ") - ((string= "pause" state) "Paused ")))) + (string (cond ((string= "stop" state) "Stopped") + ((string= "play" state) "Playing") + ((string= "pause" state) "Paused")))) (insert (propertize string 'face 'bold)) (when (numberp volume) - (insert (format "Volume: %d" volume))) + (insert (format " Volume: %d" volume))) (when repeat (insert " Repeat")) (when random (insert " Random")) (when single (insert " Single"))