From 857dd623cc44476a42e7d3d1df758111ef7ddcbc Mon Sep 17 00:00:00 2001 From: Nick Roberts Date: Wed, 10 Nov 2004 06:47:35 +0000 Subject: Don't require cl, comint, gud, gdb-ui for compilation. The resulting compiler warnings appear to be harmless. --- lisp/tooltip.el | 6 ------ 1 file changed, 6 deletions(-) (limited to 'lisp/tooltip.el') diff --git a/lisp/tooltip.el b/lisp/tooltip.el index 6ff86b4cf0b..cad0cdf7645 100644 --- a/lisp/tooltip.el +++ b/lisp/tooltip.el @@ -26,12 +26,6 @@ ;;; Code: -(eval-when-compile - (require 'cl) - (require 'comint) - (require 'gud) - (require 'gdb-ui)) - ;;; Customizable settings -- cgit v1.2.1 From 18385083b9f8bd838cf73306942fe85a579c6c16 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Thu, 11 Nov 2004 22:58:14 +0000 Subject: Require CL. --- lisp/tooltip.el | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'lisp/tooltip.el') 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 ;; 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 -- cgit v1.2.1 From 60516f7b9dbf4bc12940ddd9f5d23ec8c861eae0 Mon Sep 17 00:00:00 2001 From: Nick Roberts Date: Fri, 12 Nov 2004 00:14:24 +0000 Subject: (require): Explain why CL is needed. --- lisp/tooltip.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lisp/tooltip.el') diff --git a/lisp/tooltip.el b/lisp/tooltip.el index cb0fbfe29c6..f8243f4a0ac 100644 --- a/lisp/tooltip.el +++ b/lisp/tooltip.el @@ -26,7 +26,7 @@ ;;; Code: -(eval-when-compile (require 'cl)) +(eval-when-compile (require 'cl)) ; for case macro ;;; Customizable settings -- cgit v1.2.1