diff options
author | William Xu <william.xwl@gmail.com> | 2007-03-05 06:58:00 +0000 |
---|---|---|
committer | William Xu <william.xwl@gmail.com> | 2007-03-05 06:58:00 +0000 |
commit | 3b20b7fd3462d5d9d712ee4f199cd0b23e05faaa (patch) | |
tree | 0536c9751cb3322b471967b9807967257916505b | |
parent | 9807d62d0598eb6666b964fcd22f7e48d806d983 (diff) |
emms-lyrics.el: Update comments about "Known problems".
darcs-hash:20070305065844-cfa61-0a478ff6e4a31166d7477428359ab3abe3054a4a.gz
-rw-r--r-- | emms-lyrics.el | 21 |
1 files changed, 17 insertions, 4 deletions
diff --git a/emms-lyrics.el b/emms-lyrics.el index 69bd8df..cfbf40f 100644 --- a/emms-lyrics.el +++ b/emms-lyrics.el @@ -34,11 +34,24 @@ ;; Then either `M-x emms-lyrics-enable' or add (emms-lyrics 1) in ;; your .emacs to enable. -;;; Known bugs: +;;; Known problems: -;; 1. Sometimes music playing would be blocked by some process, like -;; startup Gnus, while emms-lyrics still goes on, thus make music and -;; lyrics asynchronical. +;; 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: |