# HG changeset patch # User Glenn Morris # Date 1196838130 0 # Node ID 2bdf985b1c491600b55960b7c6d28c8abfd9f450 # Parent a6d0cce41261a61db39c817f93b2a820a3ee5bc0 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 a6d0cce41261 -r 2bdf985b1c49 lisp/eshell/em-rebind.el --- a/lisp/eshell/em-rebind.el Wed Dec 05 07:01:59 2007 +0000 +++ b/lisp/eshell/em-rebind.el Wed Dec 05 07:02:10 2007 +0000 @@ -22,9 +22,11 @@ ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, ;; Boston, MA 02110-1301, USA. -(provide 'em-rebind) +;;; Commentary: -(eval-when-compile (require 'esh-maint)) +;;; Code: + +(eval-when-compile (require 'eshell)) (defgroup eshell-rebind nil "This module allows for special keybindings that only take effect @@ -39,8 +41,6 @@ :tag "Rebind keys at input" :group 'eshell-module) -;;; Commentary: - ;;; User Variables: (defcustom eshell-rebind-load-hook '(eshell-rebind-initialize) @@ -242,7 +242,7 @@ (eshell-life-is-too-much))) (eshell-delete-backward-char (- arg))))) -;;; Code: +(provide 'em-rebind) ;;; arch-tag: 76d84f12-cc56-4d67-9b7d-c6b44ad20530 ;;; em-rebind.el ends here