changeset 86429:8a1bf64a83a6

Move provide statement back to the top of the file.
author Glenn Morris <rgm@gnu.org>
date Sun, 25 Nov 2007 01:58:54 +0000
parents 2c8b21bef658
children 4c73f7497804
files lisp/eshell/esh-maint.el
diffstat 1 files changed, 4 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/eshell/esh-maint.el	Sun Nov 25 01:58:33 2007 +0000
+++ b/lisp/eshell/esh-maint.el	Sun Nov 25 01:58:54 2007 +0000
@@ -26,6 +26,10 @@
 
 ;;; Code:
 
+;; FIXME this cannot be moved to the end of the file without causing a
+;; recursive require during bootstrap. What a mess.
+(provide 'esh-maint)
+
 (and (fboundp 'font-lock-add-keywords)
      (font-lock-add-keywords
       'emacs-lisp-mode
@@ -136,7 +140,5 @@
 ;;   (delete-file "README.texi")
 ;;   (kill-buffer "README.texi"))
 
-(provide 'esh-maint)
-
 ;;; arch-tag: 662089b6-78ec-48c5-b94f-d212279e8902
 ;;; esh-maint.el ends here