aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2000-06-23 15:15:55 +0000
committerStefan Monnier2000-06-23 15:15:55 +0000
commit04f9dc47975a470b9708f0dccb84e77c74afbafa (patch)
tree6dbcbb6e33fa5f91fb4ae6e0506ee65b2c252851
parentf7cc6849e5fbb2d15b99ef90fcfceaac8b810ef4 (diff)
downloademacs-04f9dc47975a470b9708f0dccb84e77c74afbafa.tar.gz
emacs-04f9dc47975a470b9708f0dccb84e77c74afbafa.zip
Require CL when compiling.
-rw-r--r--lisp/eshell/esh-module.el6
1 files changed, 5 insertions, 1 deletions
diff --git a/lisp/eshell/esh-module.el b/lisp/eshell/esh-module.el
index 7de8aecbd73..ec1345f9561 100644
--- a/lisp/eshell/esh-module.el
+++ b/lisp/eshell/esh-module.el
@@ -2,6 +2,10 @@
2 2
3;; Copyright (C) 1999, 2000 Free Sofware Foundation 3;; Copyright (C) 1999, 2000 Free Sofware Foundation
4 4
5;; Author: John Wiegley <johnw@gnu.org>
6;; Keywords: processes
7;; X-URL: http://www.emacs.org/~johnw/eshell.html
8
5;; This file is part of GNU Emacs. 9;; This file is part of GNU Emacs.
6 10
7;; GNU Emacs is free software; you can redistribute it and/or modify 11;; GNU Emacs is free software; you can redistribute it and/or modify
@@ -21,7 +25,7 @@
21 25
22(provide 'esh-module) 26(provide 'esh-module)
23 27
24(eval-when-compile (require 'esh-maint)) 28(eval-when-compile (require 'esh-maint) (require 'cl))
25 29
26(defgroup eshell-module nil 30(defgroup eshell-module nil
27 "The `eshell-module' group is for Eshell extension modules, which 31 "The `eshell-module' group is for Eshell extension modules, which