]> git.eshelyaron.com Git - emacs.git/commitdiff
Move `provide' to the end.
authorStefan Monnier <monnier@iro.umontreal.ca>
Wed, 28 Nov 2001 20:41:49 +0000 (20:41 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Wed, 28 Nov 2001 20:41:49 +0000 (20:41 +0000)
lisp/progmodes/make-mode.el

index 94fc375d1fc09a42ac9096390a774a97d3dec2a1..1b2b8e1df72e6b4eb59084017aa6facc4d10cf62 100644 (file)
@@ -1,6 +1,6 @@
 ;;; make-mode.el --- makefile editing commands for Emacs
 
-;; Copyright (C) 1992, 1994, 1999, 2000 Free Software Foundation, Inc.
+;; Copyright (C) 1992,94,99,2000,2001  Free Software Foundation, Inc.
 
 ;; Author: Thomas Neumann <tom@smart.bo.open.de>
 ;;     Eric S. Raymond <esr@snark.thyrsus.com>
@@ -88,8 +88,6 @@
 
 ;;; Code:
 
-(provide 'make-mode)
-
 ;; Sadly we need this for a macro.
 (eval-when-compile
   (require 'imenu)
@@ -1523,4 +1521,6 @@ If it isn't in one, return nil."
            (forward-line -1)))
       (if (stringp found) found))))
 
+(provide 'make-mode)
+
 ;;; make-mode.el ends here