diff options
author | Johnathan Rabkin <yrk@rabkins.net> | 2012-09-18 12:01:25 -0400 |
---|---|---|
committer | Johnathan Rabkin <yrk@rabkins.net> | 2012-09-18 12:01:25 -0400 |
commit | 7a5eb54fa0f4a0d91213ec91263bfacc0469bc55 (patch) | |
tree | 187a5267b50e258e295ef57346dcb7feb6afc84a /lisp | |
parent | 5aec397dc8c706b7aab6f1a5a455388f85303ce1 (diff) |
* lisp/emms-lastfm-client.el: Remove unnecessary requirements.
This also resolves a compile error.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/emms-lastfm-client.el | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lisp/emms-lastfm-client.el b/lisp/emms-lastfm-client.el index ee9b5ee..2a8e0fa 100644 --- a/lisp/emms-lastfm-client.el +++ b/lisp/emms-lastfm-client.el @@ -34,8 +34,6 @@ (require 'emms) (require 'emms-source-file) (require 'xml) -(require 'w3m) -(require 'emms-lastfm-scrobbler) (defcustom emms-lastfm-client-username nil "Valid Last.fm account username." @@ -980,8 +978,7 @@ This function includes the cryptographic signature." (insert (format "Listeners: %s\n" stats-listeners)) (insert (format "Plays: %s\n\n" stats-playcount)) (let ((p (point))) - (insert (format "<p>%s</p>" bio-complete)) - (w3m-region p (point)))) + (insert (format "<p>%s</p>" bio-complete)))) (setq buffer-read-only t) (text-mode) (goto-char (point-min))) |