diff options
author | forcer <forcer> | 2005-09-13 23:26:00 +0000 |
---|---|---|
committer | forcer <mwolson@gnu.org> | 2005-09-13 23:26:00 +0000 |
commit | eca575ece92fc749c9d9ed161d1708684125db92 (patch) | |
tree | 4b49ca3eb8a2acfeca6dd37afceee917fa8269b2 | |
parent | 757479e76a2a6c15554055d10c87a11ca7b51e2a (diff) |
Updated define-emms-simple-player examples in emms.texinfo
darcs-hash:20050913232630-2189f-30904f1ec02344bfcc24ddf83735b5e3675d2f9a.gz
-rw-r--r-- | emms.texinfo | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/emms.texinfo b/emms.texinfo index 2d208a9..fc55759 100644 --- a/emms.texinfo +++ b/emms.texinfo @@ -5,7 +5,7 @@ @c %**end of header @c CVS info: -@c $Revision: 1.24 $ +@c $Revision: 1.25 $ @c Maintainer comments: @c There is always work to do in a manual. @@ -1041,7 +1041,7 @@ want your emms to play WAV files just put the following lines in you @lisp (require 'emms-player-simple) -(define-emms-simple-player play "\\.wav$" "play") +(define-emms-simple-player play '(file) "\\.wav$" "play") @end lisp @noindent @@ -1062,7 +1062,7 @@ line: @lisp (require 'emms-player-simple) -(define-emms-simple-player play "\\artist-*.wav$" "play" "--volume=100") +(define-emms-simple-player play '(file) "\\artist-*.wav$" "play" "--volume=100") @end lisp @noindent |