diff options
author | Yoni Rabkin <yoni@rabkins.net> | 2021-03-03 11:56:09 -0500 |
---|---|---|
committer | Yoni Rabkin <yoni@rabkins.net> | 2021-03-03 11:56:09 -0500 |
commit | d7110c0ef77e1245be695a1311f59b87a36d3567 (patch) | |
tree | d8d27928c3e272528346c9bcf1e90d54bebab3b7 | |
parent | 6a1c281b009b763230e5e79707b58eb32624156d (diff) |
* emms-player-simple.el: lexical declaration and fix
-rw-r--r-- | emms-player-simple.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/emms-player-simple.el b/emms-player-simple.el index fd93137..0e921fe 100644 --- a/emms-player-simple.el +++ b/emms-player-simple.el @@ -1,4 +1,4 @@ -;;; emms-player-simple.el --- A generic simple player. +;;; emms-player-simple.el --- A generic simple player. -*- lexical-binding: t; -*- ;; Copyright (C) 2003, 2004, 2006, 2007, 2008, ;; 2009 Free Software Foundation, Inc. @@ -129,6 +129,7 @@ PLAYER is the name of the current player." (defun emms-player-simple-sentinel (proc str) "Sentinel for determining the end of process" + (ignore str) (when (or (eq (process-status proc) 'exit) (eq (process-status proc) 'signal)) (emms-player-stopped))) |