summaryrefslogtreecommitdiff
path: root/lisp/eshell
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2007-12-05 07:09:17 +0000
committerGlenn Morris <rgm@gnu.org>2007-12-05 07:09:17 +0000
commit00c3ec7666aa20b7a0aabb62bc0245f35ac77304 (patch)
treec449968767c1665c26b28527cf668a441d621846 /lisp/eshell
parent4e6cc05cc91d58358b73380d61eec1a0b97cb33c (diff)
downloademacs-00c3ec7666aa20b7a0aabb62bc0245f35ac77304.tar.gz
Require individual files if needed when compiling, rather than
esh-maint. Collect any require statements. Move provide statement to end. Move any commentary to start.
Diffstat (limited to 'lisp/eshell')
-rw-r--r--lisp/eshell/esh-test.el19
1 files changed, 10 insertions, 9 deletions
diff --git a/lisp/eshell/esh-test.el b/lisp/eshell/esh-test.el
index b4d65fa1f5e..a8e029b629c 100644
--- a/lisp/eshell/esh-test.el
+++ b/lisp/eshell/esh-test.el
@@ -22,15 +22,6 @@
;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
;; Boston, MA 02110-1301, USA.
-(provide 'esh-test)
-
-(eval-when-compile (require 'esh-maint))
-
-(defgroup eshell-test nil
- "This module is meant to ensure that Eshell is working correctly."
- :tag "Eshell test suite"
- :group 'eshell)
-
;;; Commentary:
;; The purpose of this module is to verify that Eshell works as
@@ -39,8 +30,16 @@
;;; Code:
+(eval-when-compile
+ (require 'eshell)
+ (require 'esh-util))
(require 'esh-mode)
+(defgroup eshell-test nil
+ "This module is meant to ensure that Eshell is working correctly."
+ :tag "Eshell test suite"
+ :group 'eshell)
+
;;; User Variables:
(defface eshell-test-ok
@@ -236,5 +235,7 @@
"\n"))))
nil t))
+(provide 'esh-test)
+
;;; arch-tag: 6e32275a-8285-4a4e-b7cf-819aa7c86b8e
;;; esh-test.el ends here