From 0481ca3b8f8d558e545582440dde6dac514818fe Mon Sep 17 00:00:00 2001 From: Yoni Rabkin Date: Thu, 1 Jun 2017 19:51:38 -0400 Subject: * lisp/emms-player-mpg321-remote.el: fix signal This fixes auto playing not working. Seems @P3 is the new mpg321 signal for song being over, so both P0 and P3 should be checked. SRC: https://www.apt-browse.org/browse/debian/wheezy/main/i386/mpg321/0.3.2-1.1/file/usr/share/doc/mpg321/README.remote Patch (trivial) from --- lisp/emms-player-mpg321-remote.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lisp') diff --git a/lisp/emms-player-mpg321-remote.el b/lisp/emms-player-mpg321-remote.el index 85f506c..de242ea 100644 --- a/lisp/emms-player-mpg321-remote.el +++ b/lisp/emms-player-mpg321-remote.el @@ -153,7 +153,8 @@ For example: (list \"-o\" \"alsa\")" (cond ;; stop notice ((and (string= cmd "@P") - (string= (cadr data) "0")) + (or (string= (cadr data) "0") + (string= (cadr data) "3"))) (emms-player-mpg321-remote-notify-emms)) ;; frame notice ((string= cmd "@F") -- cgit v1.2.3