diff options
| author | Glenn Morris <rgm@gnu.org> | 2007-12-05 07:03:18 +0000 |
|---|---|---|
| committer | Glenn Morris <rgm@gnu.org> | 2007-12-05 07:03:18 +0000 |
| commit | dbba8a04c9c73ad7a8b74e716a9126ee3333fc08 (patch) | |
| tree | 1f93769ecc38b19d6598d8f2225f3c67937abd57 /lisp/eshell/em-rebind.el | |
| parent | 20d7538ee8ef3991d3b4d4684d332d4efa1f6f1c (diff) | |
| download | emacs-dbba8a04c9c73ad7a8b74e716a9126ee3333fc08.tar.gz | |
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.
Diffstat (limited to 'lisp/eshell/em-rebind.el')
| -rw-r--r-- | lisp/eshell/em-rebind.el | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/eshell/em-rebind.el b/lisp/eshell/em-rebind.el index 898f0b9d301..b550016fbe1 100644 --- a/lisp/eshell/em-rebind.el +++ b/lisp/eshell/em-rebind.el @@ -22,9 +22,11 @@ ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, ;; Boston, MA 02110-1301, USA. -(provide 'em-rebind) +;;; Commentary: + +;;; Code: -(eval-when-compile (require 'esh-maint)) +(eval-when-compile (require 'eshell)) (defgroup eshell-rebind nil "This module allows for special keybindings that only take effect @@ -39,8 +41,6 @@ the behavior of normal shells while the user editing new input text." :tag "Rebind keys at input" :group 'eshell-module) -;;; Commentary: - ;;; User Variables: (defcustom eshell-rebind-load-hook '(eshell-rebind-initialize) @@ -242,7 +242,7 @@ input." (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 |
