diff options
| author | Glenn Morris | 2008-10-08 07:42:58 +0000 |
|---|---|---|
| committer | Glenn Morris | 2008-10-08 07:42:58 +0000 |
| commit | fc17acd1f17ca9256010c09541362367c1d37717 (patch) | |
| tree | ac3463742a5b08f91770ab91c8f35966f22ef0a7 | |
| parent | 8aa89bc06c608ea71de02c88569b457584d25cea (diff) | |
| download | emacs-fc17acd1f17ca9256010c09541362367c1d37717.tar.gz emacs-fc17acd1f17ca9256010c09541362367c1d37717.zip | |
Sven Joachim <svenjoac at gmx.de>
For clarity, explicitly require cl.
| -rw-r--r-- | lisp/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/eshell/em-cmpl.el | 1 | ||||
| -rw-r--r-- | lisp/eshell/em-hist.el | 3 | ||||
| -rw-r--r-- | lisp/eshell/em-ls.el | 4 | ||||
| -rw-r--r-- | lisp/eshell/esh-cmd.el | 1 | ||||
| -rw-r--r-- | lisp/eshell/esh-ext.el | 1 | ||||
| -rw-r--r-- | 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 @@ | |||
| 1 | 2008-10-08 Sven Joachim <svenjoac@gmx.de> | ||
| 2 | |||
| 3 | * eshell/em-cmpl.el, eshell/em-hist.el, eshell/em-ls.el: | ||
| 4 | * eshell/esh-cmd.el, eshell/esh-ext.el, eshell/esh-io.el: | ||
| 5 | For clarity, explictly require cl. | ||
| 6 | |||
| 1 | 2008-10-08 Michael Olson <mwolson@gnu.org> | 7 | 2008-10-08 Michael Olson <mwolson@gnu.org> |
| 2 | 8 | ||
| 3 | * ibuffer.el (ibuffer-shrink-to-fit): Force redisplay, so that we | 9 | * 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 @@ | |||
| 71 | ;;; Code: | 71 | ;;; Code: |
| 72 | 72 | ||
| 73 | (eval-when-compile | 73 | (eval-when-compile |
| 74 | (require 'cl) | ||
| 74 | (require 'eshell)) | 75 | (require 'eshell)) |
| 75 | (require 'esh-util) | 76 | (require 'esh-util) |
| 76 | 77 | ||
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 @@ | |||
| 55 | 55 | ||
| 56 | ;;; Code: | 56 | ;;; Code: |
| 57 | 57 | ||
| 58 | (eval-when-compile | ||
| 59 | (require 'cl)) | ||
| 60 | |||
| 58 | (require 'ring) | 61 | (require 'ring) |
| 59 | (require 'esh-opt) | 62 | (require 'esh-opt) |
| 60 | (require 'em-pred) | 63 | (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 @@ | |||
| 27 | 27 | ||
| 28 | ;;; Code: | 28 | ;;; Code: |
| 29 | 29 | ||
| 30 | (eval-when-compile (require 'eshell)) | 30 | (eval-when-compile |
| 31 | (require 'cl) | ||
| 32 | (require 'eshell)) | ||
| 31 | (require 'esh-util) | 33 | (require 'esh-util) |
| 32 | (require 'esh-opt) | 34 | (require 'esh-opt) |
| 33 | 35 | ||
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 @@ | |||
| 109 | (require 'esh-ext) | 109 | (require 'esh-ext) |
| 110 | 110 | ||
| 111 | (eval-when-compile | 111 | (eval-when-compile |
| 112 | (require 'cl) | ||
| 112 | (require 'pcomplete)) | 113 | (require 'pcomplete)) |
| 113 | 114 | ||
| 114 | 115 | ||
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 @@ | |||
| 33 | (provide 'esh-ext) | 33 | (provide 'esh-ext) |
| 34 | 34 | ||
| 35 | (eval-when-compile | 35 | (eval-when-compile |
| 36 | (require 'cl) | ||
| 36 | (require 'esh-cmd)) | 37 | (require 'esh-cmd)) |
| 37 | (require 'esh-util) | 38 | (require 'esh-util) |
| 38 | 39 | ||
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 @@ | |||
| 57 | 57 | ||
| 58 | (provide 'esh-io) | 58 | (provide 'esh-io) |
| 59 | 59 | ||
| 60 | (eval-when-compile (require 'eshell)) | 60 | (eval-when-compile |
| 61 | (require 'cl) | ||
| 62 | (require 'eshell)) | ||
| 61 | 63 | ||
| 62 | (defgroup eshell-io nil | 64 | (defgroup eshell-io nil |
| 63 | "Eshell's I/O management code provides a scheme for treating many | 65 | "Eshell's I/O management code provides a scheme for treating many |