diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2000-06-23 15:15:55 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2000-06-23 15:15:55 +0000 |
commit | 04f9dc47975a470b9708f0dccb84e77c74afbafa (patch) | |
tree | 6dbcbb6e33fa5f91fb4ae6e0506ee65b2c252851 /lisp/eshell/esh-module.el | |
parent | f7cc6849e5fbb2d15b99ef90fcfceaac8b810ef4 (diff) | |
download | emacs-04f9dc47975a470b9708f0dccb84e77c74afbafa.tar.gz |
Require CL when compiling.
Diffstat (limited to 'lisp/eshell/esh-module.el')
-rw-r--r-- | lisp/eshell/esh-module.el | 6 |
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 @@ ;; Copyright (C) 1999, 2000 Free Sofware Foundation +;; Author: John Wiegley <johnw@gnu.org> +;; Keywords: processes +;; X-URL: http://www.emacs.org/~johnw/eshell.html + ;; This file is part of GNU Emacs. ;; GNU Emacs is free software; you can redistribute it and/or modify @@ -21,7 +25,7 @@ (provide 'esh-module) -(eval-when-compile (require 'esh-maint)) +(eval-when-compile (require 'esh-maint) (require 'cl)) (defgroup eshell-module nil "The `eshell-module' group is for Eshell extension modules, which |