# HG changeset patch # User Glenn Morris # Date 1196838535 0 # Node ID d8ed6bf7f010ce7931e981777df1d37003c192e1 # Parent 3e9ef52e86bef55c50f5ae1ab5f7fb7cc04b1750 Require individual files if needed when compiling, rather than esh-maint. Collect any require statements. Leave provide at start. Move any commentary to start. diff -r 3e9ef52e86be -r d8ed6bf7f010 lisp/eshell/esh-proc.el --- a/lisp/eshell/esh-proc.el Wed Dec 05 07:08:41 2007 +0000 +++ b/lisp/eshell/esh-proc.el Wed Dec 05 07:08:55 2007 +0000 @@ -22,9 +22,13 @@ ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, ;; Boston, MA 02110-1301, USA. +;;; Commentary: + (provide 'esh-proc) -(eval-when-compile (require 'esh-maint)) +(eval-when-compile + (require 'eshell) + (require 'esh-util)) (defgroup eshell-proc nil "When Eshell invokes external commands, it always does so @@ -33,8 +37,6 @@ :tag "Process management" :group 'eshell) -;;; Commentary: - ;;; User Variables: (defcustom eshell-proc-load-hook '(eshell-proc-initialize)