aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoryonirabkin <yonirabkin>2005-10-15 10:43:00 +0000
committeryonirabkin <mwolson@gnu.org>2005-10-15 10:43:00 +0000
commit291aba27f8e22bb9e5142dc4655a0dd82cb0d79c (patch)
treefa62a88b9ac5c392d8910af1a28d840874b24fea
parent32cc9880056ac6f98f78553290b7b673b2850803 (diff)
fix emms-info-ogginfo laguange
darcs-hash:20051015104340-be80e-ca11a2e2b74f0206b0f8345a8d02589b877a2ded.gz
-rw-r--r--emms-info-ogginfo.el2
-rw-r--r--emms.texinfo6
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}.