Skip to content

Commit

Permalink
Removed broken variable. Patch from: Memnon Anon
Browse files Browse the repository at this point in the history
  • Loading branch information
talau committed May 8, 2011
1 parent 7347347 commit 7f2f54d
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions emms-get-lyrics.el
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@

(defvar emms-get-lyrics-use-files t)
(defvar emms-get-lyrics-dir nil)
(defvar emms-get-lyrics-match-lyric-found "From LyricWiki")
(defvar emms-get-lyrics-match-lyric-notfound "This page needs content.")
(defvar emms-get-lyrics-match-ad-top "Ringtone to your Cell phone")
(defvar emms-get-lyrics-match-ad-bottom "Ringtone to your Cell phone")
Expand Down Expand Up @@ -97,10 +96,8 @@
(set-buffer buffer)
(funcall fn (emms-get-lyrics-url artist title) buffer)
(goto-char (point-min))
(if (and
(search-forward emms-get-lyrics-match-lyric-found nil t)
(not (search-forward
emms-get-lyrics-match-lyric-notfound nil t)))
(if (not (search-forward
emms-get-lyrics-match-lyric-notfound nil t))
; where lyrics from?
(let ((frominsert
(save-excursion
Expand Down

0 comments on commit 7f2f54d

Please sign in to comment.