diff options
-rw-r--r-- | emms-lyrics.el | 21 | ||||
-rw-r--r-- | emms.texinfo | 23 |
2 files changed, 2 insertions, 42 deletions
diff --git a/emms-lyrics.el b/emms-lyrics.el index f79a550..cba4baf 100644 --- a/emms-lyrics.el +++ b/emms-lyrics.el @@ -34,26 +34,7 @@ ;; Then either `M-x emms-lyrics-enable' or add (emms-lyrics 1) in ;; your .emacs to enable. -;;; Known problems: - -;; 1. Sometimes EMMS might be blocked by some other processes, like Gnus -;; checking new messages, while emms-lyrics still goes on, thus make -;; music and lyrics asynchronical. -;; -;; One possible solution is to pause EMMS when these processes are -;; running. e.g., for Gnus, try the following: -;; -;; (defadvice gnus-group-get-new-news (around pause-emms) -;; "Pause emms while Gnus is fetching mails or news." -;; (if emms-player-playing-p -;; (progn (emms-pause) -;; ad-do-it -;; (emms-pause)) -;; ad-do-it)) -;; -;; (ad-activate 'gnus-group-get-new-news) - -;;; Todo: +;;; TODO: ;; 1. Maybe the lyric setup should run before `emms-start'. ;; 2. Give a user a chance to choose when finding out multiple lyrics. diff --git a/emms.texinfo b/emms.texinfo index b956aa1..5c9b5b0 100644 --- a/emms.texinfo +++ b/emms.texinfo @@ -1057,7 +1057,7 @@ Unmarks same way as @command{emms-mark-forward} marks. @item % m @findex emms-mark-regexp Marks all tracks in the playlist matching the given regular -expression. A prefix argument means to unmark them instead. +expression. A prefix argument means to unmark them instead. @end table When tracks are marked you can operate on them: @@ -2090,27 +2090,6 @@ Disable displaying Emms lyrics. Toggle displaying Emms lyrics. @end defun -@heading Known Problems - -Sometimes EMMS might be blocked by some other processes, like Gnus -checking new messages, while emms-lyrics still goes on, thus make music -and lyrics asynchronical. - -One possible solution is to pause EMMS when these processes are -running. e.g., for Gnus, try the following: - -@lisp -(defadvice gnus-group-get-new-news (around pause-emms) - "Pause emms while Gnus is fetching mails or news." - (if emms-player-playing-p - (progn (emms-pause) - ad-do-it - (emms-pause)) - ad-do-it)) - -(ad-activate 'gnus-group-get-new-news) -@end lisp - @node Volume @chapter Volume |