aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2007-12-05 07:09:17 +0000
committerGlenn Morris2007-12-05 07:09:17 +0000
commit00c3ec7666aa20b7a0aabb62bc0245f35ac77304 (patch)
treec449968767c1665c26b28527cf668a441d621846
parent4e6cc05cc91d58358b73380d61eec1a0b97cb33c (diff)
downloademacs-00c3ec7666aa20b7a0aabb62bc0245f35ac77304.tar.gz
emacs-00c3ec7666aa20b7a0aabb62bc0245f35ac77304.zip
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.
-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 @@
22;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 22;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
23;; Boston, MA 02110-1301, USA. 23;; Boston, MA 02110-1301, USA.
24 24
25(provide 'esh-test)
26
27(eval-when-compile (require 'esh-maint))
28
29(defgroup eshell-test nil
30 "This module is meant to ensure that Eshell is working correctly."
31 :tag "Eshell test suite"
32 :group 'eshell)
33
34;;; Commentary: 25;;; Commentary:
35 26
36;; The purpose of this module is to verify that Eshell works as 27;; The purpose of this module is to verify that Eshell works as
@@ -39,8 +30,16 @@
39 30
40;;; Code: 31;;; Code:
41 32
33(eval-when-compile
34 (require 'eshell)
35 (require 'esh-util))
42(require 'esh-mode) 36(require 'esh-mode)
43 37
38(defgroup eshell-test nil
39 "This module is meant to ensure that Eshell is working correctly."
40 :tag "Eshell test suite"
41 :group 'eshell)
42
44;;; User Variables: 43;;; User Variables:
45 44
46(defface eshell-test-ok 45(defface eshell-test-ok
@@ -236,5 +235,7 @@
236 "\n")))) 235 "\n"))))
237 nil t)) 236 nil t))
238 237
238(provide 'esh-test)
239
239;;; arch-tag: 6e32275a-8285-4a4e-b7cf-819aa7c86b8e 240;;; arch-tag: 6e32275a-8285-4a4e-b7cf-819aa7c86b8e
240;;; esh-test.el ends here 241;;; esh-test.el ends here