diff options
author | John Paul Wallington <jpw@pobox.com> | 2004-11-15 20:50:08 +0000 |
---|---|---|
committer | John Paul Wallington <jpw@pobox.com> | 2004-11-15 20:50:08 +0000 |
commit | fbee29e6e13605693435420cfc26728a3d074c85 (patch) | |
tree | 910acbd63c531313263def1b8027062f25021f06 /lisp/autoinsert.el | |
parent | 14b84c94f8daa3c1ef08e972d18e4d035b05fe4a (diff) | |
download | emacs-fbee29e6e13605693435420cfc26728a3d074c85.tar.gz |
(auto-insert-alist): Insert the user's name in copyright notice,
rather than Free Software Foundation, for the Emacs Lisp header case
too.
Diffstat (limited to 'lisp/autoinsert.el')
-rw-r--r-- | lisp/autoinsert.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/autoinsert.el b/lisp/autoinsert.el index 88acbd04792..ea3df8efa68 100644 --- a/lisp/autoinsert.el +++ b/lisp/autoinsert.el @@ -167,7 +167,7 @@ If this contains a %s, that will be replaced by the matching rule." ";;; " (file-name-nondirectory (buffer-file-name)) " --- " str " ;; Copyright (C) " (substring (current-time-string) -4) " " - (getenv "ORGANIZATION") | "Free Software Foundation, Inc." " + (getenv "ORGANIZATION") | (progn user-full-name) " ;; Author: " (user-full-name) '(if (search-backward "&" (line-beginning-position) t) |