diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2000-12-08 17:33:34 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2000-12-08 17:33:34 +0000 |
commit | 2103c9fb65e691687b538749fd3fe9e757475036 (patch) | |
tree | 700af1d8eec27a68e5321db0c82ddabeb4eaa122 /lisp/autoinsert.el | |
parent | 9ea8de1b79328baf1e3bfc92d75e8214ba5f0d05 (diff) | |
download | emacs-2103c9fb65e691687b538749fd3fe9e757475036.tar.gz |
(auto-insert-alist): Add missing final \n.
Diffstat (limited to 'lisp/autoinsert.el')
-rw-r--r-- | lisp/autoinsert.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/autoinsert.el b/lisp/autoinsert.el index 5cf87b40b61..ae6e9863097 100644 --- a/lisp/autoinsert.el +++ b/lisp/autoinsert.el @@ -136,7 +136,7 @@ If this contains a %s, that will be replaced by the matching rule." "Short description: " ";;; " (file-name-nondirectory (buffer-file-name)) " --- " str " -;; Copyright (C) " (substring (current-time-string) -4) " " +;; Copyright (C) " (substring (current-time-string) -4) " " (getenv "ORGANIZATION") | "Free Software Foundation, Inc." " ;; Author: " (user-full-name) @@ -181,7 +181,7 @@ If this contains a %s, that will be replaced by the matching rule." \(provide '" (file-name-sans-extension (file-name-nondirectory (buffer-file-name))) ") -;;; " (file-name-nondirectory (buffer-file-name)) " ends here")) +;;; " (file-name-nondirectory (buffer-file-name)) " ends here\n")) "A list specifying text to insert by default into a new file. Elements look like (CONDITION . ACTION) or ((CONDITION . DESCRIPTION) . ACTION). CONDITION maybe a regexp that must match the new file's name, or it may be |