summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2004-11-11 22:58:14 +0000
committerStefan Monnier <monnier@iro.umontreal.ca>2004-11-11 22:58:14 +0000
commit18385083b9f8bd838cf73306942fe85a579c6c16 (patch)
tree7b79fe37e332e8285293fa6fd3412151703b93b6
parent977b50fb122c5480ec19d25ee4f4bb33dec0ddfb (diff)
downloademacs-18385083b9f8bd838cf73306942fe85a579c6c16.tar.gz
Require CL.
-rw-r--r--lisp/tooltip.el6
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/tooltip.el b/lisp/tooltip.el
index cad0cdf7645..cb0fbfe29c6 100644
--- a/lisp/tooltip.el
+++ b/lisp/tooltip.el
@@ -1,6 +1,6 @@
;;; tooltip.el --- show tooltip windows
-;; Copyright (C) 1997, 1999, 2000, 2001 Free Software Foundation, Inc.
+;; Copyright (C) 1997, 1999, 2000, 2001, 2004 Free Software Foundation, Inc.
;; Author: Gerd Moellmann <gerd@acm.org>
;; Keywords: help c mouse tools
@@ -26,6 +26,8 @@
;;; Code:
+(eval-when-compile (require 'cl))
+
;;; Customizable settings
@@ -518,5 +520,5 @@ use either \\[customize] or the function `tooltip-mode'."
(provide 'tooltip)
-;;; arch-tag: 3d61135e-4618-4a78-af28-183f6df5636f
+;; arch-tag: 3d61135e-4618-4a78-af28-183f6df5636f
;;; tooltip.el ends here