# HG changeset patch # User Stefan Monnier # Date 1006980109 0 # Node ID d00b43e2316cd413fef68e154f389d7a867317d9 # Parent 66c7637cbf170cea6ce30bd40dcf7599c392384e Move `provide' to the end. diff -r 66c7637cbf17 -r d00b43e2316c lisp/progmodes/make-mode.el --- 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 ;; Eric S. Raymond @@ -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