thomas-louvigne / playerctl.el

Play music from emacs with playerctl
Other
15 stars 7 forks source link

Fix '--format' argument #9

Closed syohex closed 2 years ago

syohex commented 2 years ago

This fixes the following error.

playerctl-metadata: Wrong number of arguments: (lambda (cmd arg msg) (let ((proc (start-process "playerctl.el" "*player\
ctl*" "playerctl" cmd arg))) (if (equal cmd "status") (set-process-filter proc #'(lambda (proc line) (message "Status :\
 %s" line))) (message msg)))), 4
thomas-louvigne commented 2 years ago

Thanks