diff options
author | William Xu <william.xwl@gmail.com> | 2008-03-15 09:28:00 +0000 |
---|---|---|
committer | William Xu <william.xwl@gmail.com> | 2008-03-15 09:28:00 +0000 |
commit | 0d86b1844c9173c24889896c0531c75973b75e57 (patch) | |
tree | 0358bc6516f765be56fc09f1e907a37484272b72 | |
parent | 0c0fe3d567921db68464b6bfd9b24cc9d4093f6c (diff) |
(emms-player-mplayer-subtitle-checker): Replace (lambda (el) el) with
a simpler function -- `identify'.
darcs-hash:20080315092854-cfa61-d185513e398b57d9a0550bca96441bdc1ec30598.gz
-rw-r--r-- | emms-player-mplayer.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emms-player-mplayer.el b/emms-player-mplayer.el index 9ed47e4..e19bcc7 100644 --- a/emms-player-mplayer.el +++ b/emms-player-mplayer.el @@ -96,7 +96,7 @@ (emms-replace-regexp-in-string (concat ext "$") el name)) emms-player-mplayer-subtitle-extensions))) - (subtitle (mapconcat (lambda (el) el) choices ","))) + (subtitle (mapconcat 'identity choices ","))) (unless (string= subtitle "") (setq emms-player-mplayer-parameters (append emms-player-mplayer-parameters |