diff options
-rw-r--r-- | emms-player-mpd.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/emms-player-mpd.el b/emms-player-mpd.el index 5c079ff..f92c065 100644 --- a/emms-player-mpd.el +++ b/emms-player-mpd.el @@ -196,7 +196,10 @@ and errors." (set-process-sentinel emms-player-mpd-process 'emms-player-mpd-sentinel) (set-process-filter emms-player-mpd-process - 'emms-player-mpd-filter))) + 'emms-player-mpd-filter) + (if (fboundp 'set-process-query-on-exit-flag) + (set-process-query-on-exit-flag emms-player-mpd-process nil) + (process-kill-without-query emms-player-mpd-process)))) (defun emms-player-mpd-send (command) "Send the given COMMAND to the MusicPD server." |