1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-03 10:31:37 -08:00

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.
This commit is contained in:
Glenn Morris 2007-12-05 07:03:18 +00:00
parent 20d7538ee8
commit dbba8a04c9
13 changed files with 139 additions and 148 deletions

View file

@ -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