diff options
-rw-r--r-- | emms-info-ogginfo.el | 2 | ||||
-rw-r--r-- | emms.texinfo | 6 |
2 files changed, 2 insertions, 6 deletions
diff --git a/emms-info-ogginfo.el b/emms-info-ogginfo.el index 14c551e..4f43d7e 100644 --- a/emms-info-ogginfo.el +++ b/emms-info-ogginfo.el @@ -48,7 +48,7 @@ This is a useful element for `emms-info-functions'." ;; all the rest of the info available (goto-char (point-min)) - (when (re-search-forward "User comments section follows..." (point-max) t) + (when (re-search-forward "^.*\\.\\.\\.$" (point-max) t) (while (zerop (forward-line 1)) (when (looking-at "^\t\\(.*\\)=\\(.*\\)$") (let ((a (match-string 1)) diff --git a/emms.texinfo b/emms.texinfo index 1ef3173..5c20137 100644 --- a/emms.texinfo +++ b/emms.texinfo @@ -648,15 +648,12 @@ buffer is also selected. The current Emms playlist buffer is stored in the variable @var{emms-playlist-buffer}. +@c FIXME: Needs to be fixe-up @node Info Tags @chapter Info Tags @cindex track information -The file @file{emms-info.el} provides an interface for different -methods of reading info about the files that Emms is playing, and -displaying it. - To create a method for retrieving (or setting) info about a file, you create an object like this: @@ -666,7 +663,6 @@ create an object like this: :get 'emms-info-mp3info-get :set 'emms-info-mp3info-set) @end lisp -@noindent Then you register it with emms-info, by adding it to @var{emms-info-methods-list}. |