# HG changeset patch # User Glenn Morris # Date 1196838198 0 # Node ID 05b2a39085078a9c9fa2bc901254a28897100641 # Parent 9b97b187c7e22e260a6407b2d510632b95e95962 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 9b97b187c7e2 -r 05b2a3908507 lisp/eshell/em-xtra.el --- a/lisp/eshell/em-xtra.el Wed Dec 05 07:03:05 2007 +0000 +++ b/lisp/eshell/em-xtra.el Wed Dec 05 07:03:18 2007 +0000 @@ -22,9 +22,14 @@ ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, ;; Boston, MA 02110-1301, USA. -(provide 'em-xtra) +;;; Commentary: + +;;; Code: -(eval-when-compile (require 'esh-maint)) +(eval-when-compile + (require 'eshell) + (require 'pcomplete)) +(require 'compile) (defgroup eshell-xtra nil "This module defines some extra alias functions which are entirely @@ -34,10 +39,6 @@ :tag "Extra alias functions" :group 'eshell-module) -;;; Commentary: - -(require 'compile) - ;;; Functions: (defun eshell/expr (&rest args) @@ -117,7 +118,7 @@ (defalias 'pcomplete/bcc 'pcomplete/bcc32) -;;; Code: +(provide 'em-xtra) ;;; arch-tag: f944cfda-a118-470c-a0d6-b41a3a5c99c7 ;;; em-xtra.el ends here