branch: externals/auto-overlays
commit 553959668504d726c65073a292a925e58eabdd19
Author: Toby S. Cubitt <[email protected]>
Commit: Toby S. Cubitt <[email protected]>
Added missing (eval-when-compile (require 'cl)).
---
auto-overlays.el | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/auto-overlays.el b/auto-overlays.el
index 207df44..60e7b77 100644
--- a/auto-overlays.el
+++ b/auto-overlays.el
@@ -2,10 +2,10 @@
;;; auto-overlays.el --- automatic regexp-delimited overlays for emacs
-;; Copyright (C) 2005-2008 Toby Cubitt
+;; Copyright (C) 2005-2010 Toby Cubitt
;; Author: Toby Cubitt <[email protected]>
-;; Version: 0.9.8
+;; Version: 0.9.9
;; Keywords: automatic, overlays
;; URL: http://www.dr-qubit.org/emacs.php
@@ -30,6 +30,9 @@
;;; Change Log:
;;
+;; Version 0.9.9
+;; * added missing (eval-when-compile (require 'cl))
+;;
;; Version 0.9.8
;; * modified `auto-o-run-after-change-functions' to ignore all changes that
;; aren't either insertions or deletions (were these behind some of the
@@ -164,6 +167,7 @@
(defvar auto-overlay-unload-hook nil)
+(eval-when-compile (require 'cl))
(require 'auto-overlay-common)
(provide 'auto-overlays)