emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/auto-overlays 5539596 56/93: Added missing (eval-when-c


From: Stefan Monnier
Subject: [elpa] externals/auto-overlays 5539596 56/93: Added missing (eval-when-compile (require 'cl)).
Date: Mon, 14 Dec 2020 13:00:37 -0500 (EST)

branch: externals/auto-overlays
commit 553959668504d726c65073a292a925e58eabdd19
Author: Toby S. Cubitt <toby-predictive@dr-qubit.org>
Commit: Toby S. Cubitt <toby-predictive@dr-qubit.org>

    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 <toby-predictive@dr-qubit.org>
-;; 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)
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]