# HG changeset patch # User Glenn Morris # Date 1196838141 0 # Node ID 1577bd98c621f23600a0c7f5930e41c473791455 # Parent 2bdf985b1c491600b55960b7c6d28c8abfd9f450 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. diff -r 2bdf985b1c49 -r 1577bd98c621 lisp/eshell/em-script.el --- a/lisp/eshell/em-script.el Wed Dec 05 07:02:10 2007 +0000 +++ b/lisp/eshell/em-script.el Wed Dec 05 07:02:21 2007 +0000 @@ -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 @@ :tag "Running script files." :group 'eshell-module) -;;; Commentary: - ;;; User Variables: (defcustom eshell-script-load-hook '(eshell-script-initialize) @@ -137,7 +135,7 @@ (put 'eshell/. 'eshell-no-numeric-conversions t) -;;; Code: +(provide 'em-script) ;;; arch-tag: a346439d-5ba8-4faf-ac2b-3aacfeaa4647 ;;; em-script.el ends here