diff options
author | Ye Wenbin <wenbinye@gmail.com> | 2007-03-16 07:50:00 +0000 |
---|---|---|
committer | Ye Wenbin <wenbinye@gmail.com> | 2007-03-16 07:50:00 +0000 |
commit | 1555e86d66131da72a6b1cf94706d662a2f49425 (patch) | |
tree | 53f41cad79203125a4c4ab8d09fada46fab46bda | |
parent | 71aa2809de959a24ab66a40f7892ab7a7224c28c (diff) |
Don't display message when encounter error
darcs-hash:20070316075057-94065-61127edd46eb789b5060d10072376c06faf2af3b.gz
-rw-r--r-- | emms-tag-editor.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/emms-tag-editor.el b/emms-tag-editor.el index 5acb2d1..765abbe 100644 --- a/emms-tag-editor.el +++ b/emms-tag-editor.el @@ -422,8 +422,8 @@ edit buffer." (y-or-n-p "You have change some track names, sync the cache? ")) (and (fboundp 'emms-cache-sync) ; silence byte-compiler (emms-cache-sync))) - (emms-tag-editor-display-log-buffer-maybe) - (message "Set all mp3 tag done!"))) + (unless (emms-tag-editor-display-log-buffer-maybe) + (message "Set all mp3 tag done!")))) (if arg (bury-buffer))) (defun emms-tag-editor-submit-and-exit () |