From fc17acd1f17ca9256010c09541362367c1d37717 Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Wed, 8 Oct 2008 07:42:58 +0000 Subject: [PATCH] Sven Joachim For clarity, explicitly require cl. --- lisp/ChangeLog | 6 ++++++ lisp/eshell/em-cmpl.el | 1 + lisp/eshell/em-hist.el | 3 +++ lisp/eshell/em-ls.el | 4 +++- lisp/eshell/esh-cmd.el | 1 + lisp/eshell/esh-ext.el | 1 + lisp/eshell/esh-io.el | 4 +++- 7 files changed, 18 insertions(+), 2 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 3bb3956a6c1..9250bbdea8b 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,9 @@ +2008-10-08 Sven Joachim + + * eshell/em-cmpl.el, eshell/em-hist.el, eshell/em-ls.el: + * eshell/esh-cmd.el, eshell/esh-ext.el, eshell/esh-io.el: + For clarity, explictly require cl. + 2008-10-08 Michael Olson * ibuffer.el (ibuffer-shrink-to-fit): Force redisplay, so that we diff --git a/lisp/eshell/em-cmpl.el b/lisp/eshell/em-cmpl.el index a5dfe1424c9..22586618c93 100644 --- a/lisp/eshell/em-cmpl.el +++ b/lisp/eshell/em-cmpl.el @@ -71,6 +71,7 @@ ;;; Code: (eval-when-compile + (require 'cl) (require 'eshell)) (require 'esh-util) diff --git a/lisp/eshell/em-hist.el b/lisp/eshell/em-hist.el index b9913336547..e672d6049f3 100644 --- a/lisp/eshell/em-hist.el +++ b/lisp/eshell/em-hist.el @@ -55,6 +55,9 @@ ;;; Code: +(eval-when-compile + (require 'cl)) + (require 'ring) (require 'esh-opt) (require 'em-pred) diff --git a/lisp/eshell/em-ls.el b/lisp/eshell/em-ls.el index eb3389ce7cf..8c74b30f942 100644 --- a/lisp/eshell/em-ls.el +++ b/lisp/eshell/em-ls.el @@ -27,7 +27,9 @@ ;;; Code: -(eval-when-compile (require 'eshell)) +(eval-when-compile + (require 'cl) + (require 'eshell)) (require 'esh-util) (require 'esh-opt) diff --git a/lisp/eshell/esh-cmd.el b/lisp/eshell/esh-cmd.el index 82677aec8aa..2e47fd718c2 100644 --- a/lisp/eshell/esh-cmd.el +++ b/lisp/eshell/esh-cmd.el @@ -109,6 +109,7 @@ (require 'esh-ext) (eval-when-compile + (require 'cl) (require 'pcomplete)) diff --git a/lisp/eshell/esh-ext.el b/lisp/eshell/esh-ext.el index 6013093f0df..ad7d35dfa8c 100644 --- a/lisp/eshell/esh-ext.el +++ b/lisp/eshell/esh-ext.el @@ -33,6 +33,7 @@ (provide 'esh-ext) (eval-when-compile + (require 'cl) (require 'esh-cmd)) (require 'esh-util) diff --git a/lisp/eshell/esh-io.el b/lisp/eshell/esh-io.el index 052301013c2..205207c8394 100644 --- a/lisp/eshell/esh-io.el +++ b/lisp/eshell/esh-io.el @@ -57,7 +57,9 @@ (provide 'esh-io) -(eval-when-compile (require 'eshell)) +(eval-when-compile + (require 'cl) + (require 'eshell)) (defgroup eshell-io nil "Eshell's I/O management code provides a scheme for treating many -- 2.39.5