diff options
author | Lucas Bonnet <lucas@rincevent.net> | 2011-01-03 09:43:59 +0100 |
---|---|---|
committer | Lucas Bonnet <lucas@rincevent.net> | 2011-01-03 09:43:59 +0100 |
commit | 7aae0a2a002d7ec0b2c4bd3468a0e40bdee416c8 (patch) | |
tree | c3fbd74d6593db893a1afd1d037a40c47b3a4d27 /lisp | |
parent | 4bb75d5f7304d1a986ff0508bce8700100908849 (diff) | |
parent | 11831694fed9bb73fce80fb3e288cc490c2a8f65 (diff) |
Merge branch 'master' of ssh://git.sv.gnu.org/srv/git/emms
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/emms-lastfm-client.el | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/lisp/emms-lastfm-client.el b/lisp/emms-lastfm-client.el index 9f66877..9332216 100644 --- a/lisp/emms-lastfm-client.el +++ b/lisp/emms-lastfm-client.el @@ -587,6 +587,13 @@ This function includes the cryptographic signature." (emms-lastfm-scrobbler-handshake) (emms-lastfm-client-play-playlist)) +(defun emms-lastfm-client-play-recommended () + "Play a Last.fm station with \"recommended\" tracks." + (interactive) + (emms-lastfm-client-play-user-station + emms-lastfm-client-username + "lastfm://user/%s/recommended")) + (defun emms-lastfm-client-play-loved () "Play a Last.fm station with \"loved\" tracks." (interactive) @@ -594,6 +601,13 @@ This function includes the cryptographic signature." emms-lastfm-client-username "lastfm://user/%s/loved")) +(defun emms-lastfm-client-play-mix () + "Play the \"Mix\" station the current user." + (interactive) + (emms-lastfm-client-play-user-station + emms-lastfm-client-username + "lastfm://user/%s/mix")) + (defun emms-lastfm-client-play-neighborhood () "Play a Last.fm station with \"neighborhood\" tracks." (interactive) |