aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Olson <mwolson@gnu.org>2006-05-24 06:16:00 +0000
committerMichael Olson <mwolson@gnu.org>2006-05-24 06:16:00 +0000
commit08f9d4ef1c96d8b1075260cfcc61cf8e394a3fa1 (patch)
tree783abf77698a181fd519b98022d391767aae74c2
parent7a770fa4ab50ae5b7445ec239c7e7375d09d3a24 (diff)
emms-player-mpd: Fix bug that caused unconditional reloading of the entire MusicPD playlist whenever the track was changed manually.
darcs-hash:20060524061655-1bfb2-169e1435160d229391fbeab692180d47458f66c9.gz
-rw-r--r--emms-player-mpd.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/emms-player-mpd.el b/emms-player-mpd.el
index aae89dd..220f102 100644
--- a/emms-player-mpd.el
+++ b/emms-player-mpd.el
@@ -879,9 +879,9 @@ from other functions."
(interactive)
(emms-cancel-timer emms-player-mpd-status-timer)
(setq emms-player-mpd-status-timer nil)
- (setq emms-player-mpd-playlist-id nil)
(setq emms-player-mpd-current-song nil)
(unless no-stop
+ (setq emms-player-mpd-playlist-id nil)
(let ((emms-player-stopped-p t))
(emms-player-stopped))))