changeset 41642:d00b43e2316c

Move `provide' to the end.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Wed, 28 Nov 2001 20:41:49 +0000
parents 66c7637cbf17
children 604a5f86840f
files lisp/progmodes/make-mode.el
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/progmodes/make-mode.el	Wed Nov 28 20:40:36 2001 +0000
+++ b/lisp/progmodes/make-mode.el	Wed Nov 28 20:41:49 2001 +0000
@@ -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 @@
 	    (forward-line -1)))
       (if (stringp found) found))))
 
+(provide 'make-mode)
+
 ;;; make-mode.el ends here