aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris <[email protected]>2007-11-25 01:58:54 +0000
committerGlenn Morris <[email protected]>2007-11-25 01:58:54 +0000
commit93a2ac9768d893731149deb44b7b1919621e6277 (patch)
treed3a76a04f06dfd11d01d7a4c9bb2e6f227902288
parent989823ed56cacb1f0a7c5f3331893f32ed13fc37 (diff)
Move provide statement back to the top of the file.
-rw-r--r--lisp/eshell/esh-maint.el6
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/eshell/esh-maint.el b/lisp/eshell/esh-maint.el
index c74ec4d25f..9ee666218e 100644
--- a/lisp/eshell/esh-maint.el
+++ b/lisp/eshell/esh-maint.el
@@ -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