From 8365f1c808490ad348c8fba82ea57f91cb1c996f Mon Sep 17 00:00:00 2001 From: Michael Olson Date: Sun, 19 Aug 2007 15:04:00 +0000 Subject: Drop eval-when-compile around (require 'overlay) darcs-hash:20070819150408-1bfb2-c1c9ec1c084499b0e171299a91024d27a41d7db0.gz --- emms-playlist-mode.el | 7 +++---- 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) -- cgit v1.2.3