diff options
author | Michael Olson <mwolson@gnu.org> | 2007-08-19 15:04:00 +0000 |
---|---|---|
committer | Michael Olson <mwolson@gnu.org> | 2007-08-19 15:04:00 +0000 |
commit | 8365f1c808490ad348c8fba82ea57f91cb1c996f (patch) | |
tree | e64f5475512b3eac3c87e1176574b9d5a2009153 | |
parent | 03f4b18cee7f843cb8df67f2411b18d44fc941f4 (diff) |
Drop eval-when-compile around (require 'overlay)
darcs-hash:20070819150408-1bfb2-c1c9ec1c084499b0e171299a91024d27a41d7db0.gz
-rw-r--r-- | emms-playlist-mode.el | 7 | ||||
-rw-r--r-- | emms-tag-editor.el | 7 |
2 files changed, 6 insertions, 8 deletions
diff --git a/emms-playlist-mode.el b/emms-playlist-mode.el index 40434c3..66b6a87 100644 --- a/emms-playlist-mode.el +++ b/emms-playlist-mode.el @@ -35,10 +35,9 @@ ;;; -------------------------------------------------------- (require 'emms) -(eval-when-compile - (condition-case nil - (require 'overlay) - (error nil))) +(condition-case nil + (require 'overlay) + (error nil)) (require 'emms-source-playlist) (defvar emms-playlist-mode-hook nil diff --git a/emms-tag-editor.el b/emms-tag-editor.el index b9ac99f..6091ca9 100644 --- a/emms-tag-editor.el +++ b/emms-tag-editor.el @@ -29,10 +29,9 @@ (eval-when-compile (require 'cl)) -(eval-when-compile - (condition-case nil - (require 'overlay) - (error nil))) +(condition-case nil + (require 'overlay) + (error nil)) (require 'emms) (require 'emms-info-mp3info) (require 'emms-playlist-mode) |