1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-26 10:49:33 +00:00

Require CL.

This commit is contained in:
Stefan Monnier 2004-11-11 22:58:14 +00:00
parent 977b50fb12
commit 18385083b9

View File

@ -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