diff options
author | Glenn Morris <rgm@gnu.org> | 2007-12-05 07:03:18 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2007-12-05 07:03:18 +0000 |
commit | dbba8a04c9c73ad7a8b74e716a9126ee3333fc08 (patch) | |
tree | 1f93769ecc38b19d6598d8f2225f3c67937abd57 /lisp/eshell/em-script.el | |
parent | 20d7538ee8ef3991d3b4d4684d332d4efa1f6f1c (diff) | |
download | emacs-dbba8a04c9c73ad7a8b74e716a9126ee3333fc08.tar.gz emacs-dbba8a04c9c73ad7a8b74e716a9126ee3333fc08.tar.bz2 emacs-dbba8a04c9c73ad7a8b74e716a9126ee3333fc08.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.
Diffstat (limited to 'lisp/eshell/em-script.el')
-rw-r--r-- | lisp/eshell/em-script.el | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/lisp/eshell/em-script.el b/lisp/eshell/em-script.el index 50fdc3ccccc..0a83881c03f 100644 --- a/lisp/eshell/em-script.el +++ b/lisp/eshell/em-script.el @@ -22,9 +22,9 @@ ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, ;; Boston, MA 02110-1301, USA. -(provide 'em-script) +;;; Commentary: -(eval-when-compile (require 'esh-maint)) +;;; Code: (require 'eshell) @@ -34,8 +34,6 @@ commands, as a script file." :tag "Running script files." :group 'eshell-module) -;;; Commentary: - ;;; User Variables: (defcustom eshell-script-load-hook '(eshell-script-initialize) @@ -137,7 +135,7 @@ environment, binding ARGS to $1, $2, etc.") (put 'eshell/. 'eshell-no-numeric-conversions t) -;;; Code: +(provide 'em-script) ;;; arch-tag: a346439d-5ba8-4faf-ac2b-3aacfeaa4647 ;;; em-script.el ends here |