diff options
author | Tassilo Horn <tassilo@member.fsf.org> | 2006-12-20 20:50:00 +0000 |
---|---|---|
committer | Tassilo Horn <tassilo@member.fsf.org> | 2006-12-20 20:50:00 +0000 |
commit | 87b19716ffca280e6efd7258b8b27e6d53b44c75 (patch) | |
tree | ea2f5e824c19fdb1703fd765269feea4dc1f04f3 | |
parent | 99bd78e86c37e8877178900e81dea03dcc1c0959 (diff) |
replace-next-line-with-forward-line.dpatch
The docstring of `next-line' suggest to use `forward-line' instead, so
use that...
darcs-hash:20061220205010-c06f4-2562ebd8052d536eebce9d1f6e21112f0934b3ec.gz
-rw-r--r-- | emms-lastfm.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/emms-lastfm.el b/emms-lastfm.el index 3f16f8c..402021e 100644 --- a/emms-lastfm.el +++ b/emms-lastfm.el @@ -174,9 +174,9 @@ well or if an error occured." (message "EMMS: Wrong username.")))) (when (string-match "UPDATE" response) (message "EMMS: There's a new last.fm plugin version.")) - (next-line) + (forward-line) (setq emms-lastfm-md5-challenge (read-line)) - (next-line) + (forward-line) (setq emms-lastfm-submit-url (read-line)) (message "EMMS: Handshaking with server done."))))) |