]> code.delx.au - gnu-emacs/blobdiff - lisp/autoinsert.el
*** empty log message ***
[gnu-emacs] / lisp / autoinsert.el
index 61736c9f68b414ec9ae867a330883f28cdee1726..1046aa659044354658416133942c19042f5f4c9c 100644 (file)
@@ -1,11 +1,15 @@
-;; Automatic mode-dependent insertion of text into new files.
+;;; autoinsert.el --- automatic mode-dependent insertion of text into new files
+
 ;; Copyright (C) 1985, 1986, 1987 Free Software Foundation, Inc.
 
+;; Author: Charlie Martin <crm@cs.duke.edu>
+;; Created: 01 Jul 1988
+
 ;; This file is part of GNU Emacs.
 
 ;; GNU Emacs is free software; you can redistribute it and/or modify
 ;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation; either version 1, or (at your option)
+;; the Free Software Foundation; either version 2, or (at your option)
 ;; any later version.
 
 ;; GNU Emacs is distributed in the hope that it will be useful,
@@ -17,7 +21,7 @@
 ;; along with GNU Emacs; see the file COPYING.  If not, write to
 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
 
-;;; autoinsert.el
+;;; Commentary:
 
 ;;;  Abstract:
 ;;;
@@ -48,6 +52,8 @@
 ;;;
 ;;;  Date: Fri Jul  1 16:15:31 EDT 1988
 
+;;; Code:
+
 (defvar auto-insert-alist '(("\\.tex$" . "tex-insert.tex")
                            ("\\.c$" . "c-insert.c")
                            ("\\.h$" . "h-insert.c")
@@ -90,3 +96,5 @@ Matches the visited file name against the elements of `auto-insert-alist'."
 (setq find-file-not-found-hooks
       (cons 'insert-auto-insert-files
            find-file-not-found-hooks))
+
+;;; autoinsert.el ends here