diff options
author | 2015-08-09 20:33:26 +0200 | |
---|---|---|
committer | 2015-08-09 20:33:26 +0200 | |
commit | 947e27c35c1f7c7e05e7f00bca53fc6902e0c9bd (patch) | |
tree | 6f06ce4de26ee6fb97bec36f8b2f17a20f24ac40 | |
parent | Update copyright years. (diff) | |
download | ebuild-mode-947e27c35c1f7c7e05e7f00bca53fc6902e0c9bd.tar.gz ebuild-mode-947e27c35c1f7c7e05e7f00bca53fc6902e0c9bd.tar.bz2 ebuild-mode-947e27c35c1f7c7e05e7f00bca53fc6902e0c9bd.zip |
ebuild-mode.el: Insert $Id$ instead of $Header$ in ebuild skeleton.
* ebuild-mode.el (ebuild-mode-insert-skeleton): Insert $Id$
instead of $Header$, following the Git migration.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | ebuild-mode.el | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2015-08-09 Ulrich Müller <ulm@gentoo.org> + + * ebuild-mode.el (ebuild-mode-insert-skeleton): Insert $Id$ + instead of $Header$, following the Git migration. + 2014-11-18 Ulrich Müller <ulm@gentoo.org> * Version 1.27 released. diff --git a/ebuild-mode.el b/ebuild-mode.el index 9fdb13d..3646020 100644 --- a/ebuild-mode.el +++ b/ebuild-mode.el @@ -398,7 +398,7 @@ and `all-completions' for details." ;; standard header "# Copyright 1999-" (format-time-string "%Y") " Gentoo Foundation\n" "# Distributed under the terms of the GNU General Public License v2\n" - "# $Header: $\n" + "# $Id$\n" "\n" ;; EAPI "EAPI=" |