aboutsummaryrefslogtreecommitdiff
path: root/emms-player-mpd.el
diff options
context:
space:
mode:
authorMichael Olson <mwolson@gnu.org>2006-08-11 18:58:00 +0000
committerMichael Olson <mwolson@gnu.org>2006-08-11 18:58:00 +0000
commit09ec5bcfdd5320369ce49919e33d7048280af450 (patch)
tree243663a6eecf4071c9160d172e1a86ca4fc0db4a /emms-player-mpd.el
parentedbaced4c24d099692a525580d4bf853712b1bdc (diff)
emms-player-mpd: Really kill the client process, as documented, instead of waiting for it to time out.
darcs-hash:20060811185849-1bfb2-bcfc45ae54e42ad5c182bd7f3cd4b6ca5e76f3f3.gz
Diffstat (limited to 'emms-player-mpd.el')
-rw-r--r--emms-player-mpd.el5
1 files changed, 4 insertions, 1 deletions
diff --git a/emms-player-mpd.el b/emms-player-mpd.el
index 80c0449..d82499a 100644
--- a/emms-player-mpd.el
+++ b/emms-player-mpd.el
@@ -926,6 +926,9 @@ from other functions."
(emms-cancel-timer emms-player-mpd-status-timer)
(setq emms-player-mpd-status-timer nil)
(setq emms-player-mpd-current-song nil)
+ (when (and (processp emms-player-mpd-process)
+ (memq (process-status emms-player-mpd-process) '(run open)))
+ (delete-process emms-player-mpd-process))
(unless no-stop
(let ((emms-player-stopped-p t))
(emms-player-stopped))))
@@ -933,10 +936,10 @@ from other functions."
(defun emms-player-mpd-stop ()
"Stop the currently playing song."
(interactive)
- (emms-player-mpd-disconnect t)
(condition-case nil
(emms-player-mpd-send "stop" nil #'ignore)
(error nil))
+ (emms-player-mpd-disconnect t)
(let ((emms-player-stopped-p t))
(emms-player-stopped)))