diff options
| author | Glenn Morris | 2007-12-05 07:03:18 +0000 |
|---|---|---|
| committer | Glenn Morris | 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.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 @@ | |||
| 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 'em-script) | 25 | ;;; Commentary: |
| 26 | 26 | ||
| 27 | (eval-when-compile (require 'esh-maint)) | 27 | ;;; Code: |
| 28 | 28 | ||
| 29 | (require 'eshell) | 29 | (require 'eshell) |
| 30 | 30 | ||
| @@ -34,8 +34,6 @@ commands, as a script file." | |||
| 34 | :tag "Running script files." | 34 | :tag "Running script files." |
| 35 | :group 'eshell-module) | 35 | :group 'eshell-module) |
| 36 | 36 | ||
| 37 | ;;; Commentary: | ||
| 38 | |||
| 39 | ;;; User Variables: | 37 | ;;; User Variables: |
| 40 | 38 | ||
| 41 | (defcustom eshell-script-load-hook '(eshell-script-initialize) | 39 | (defcustom eshell-script-load-hook '(eshell-script-initialize) |
| @@ -137,7 +135,7 @@ environment, binding ARGS to $1, $2, etc.") | |||
| 137 | 135 | ||
| 138 | (put 'eshell/. 'eshell-no-numeric-conversions t) | 136 | (put 'eshell/. 'eshell-no-numeric-conversions t) |
| 139 | 137 | ||
| 140 | ;;; Code: | 138 | (provide 'em-script) |
| 141 | 139 | ||
| 142 | ;;; arch-tag: a346439d-5ba8-4faf-ac2b-3aacfeaa4647 | 140 | ;;; arch-tag: a346439d-5ba8-4faf-ac2b-3aacfeaa4647 |
| 143 | ;;; em-script.el ends here | 141 | ;;; em-script.el ends here |