[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[6298] use printf for copyright year
From: |
karl |
Subject: |
[6298] use printf for copyright year |
Date: |
Sun, 31 May 2015 22:32:09 +0000 |
Revision: 6298
http://svn.sv.gnu.org/viewvc/?view=rev&root=texinfo&revision=6298
Author: karl
Date: 2015-05-31 22:32:08 +0000 (Sun, 31 May 2015)
Log Message:
-----------
use printf for copyright year
Modified Paths:
--------------
trunk/ChangeLog
trunk/texindex/texindex.awk
trunk/texindex/ti.twjr
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2015-05-31 21:33:20 UTC (rev 6297)
+++ trunk/ChangeLog 2015-05-31 22:32:08 UTC (rev 6298)
@@ -5,6 +5,10 @@
2015-05-31 Karl Berry <address@hidden>
+ * texindex/ti.twjr (version): use printf for year.
+
+2015-05-31 Karl Berry <address@hidden>
+
* po/Makefile.in.in ($(DOMAIN).pot-update): invoke xgettext a
second time with --join-existing --language=awk texindex/ti.twjr,
since there is apparently no other way to get ti.twjr's strings
Modified: trunk/texindex/texindex.awk
===================================================================
--- trunk/texindex/texindex.awk 2015-05-31 21:33:20 UTC (rev 6297)
+++ trunk/texindex/texindex.awk 2015-05-31 22:32:08 UTC (rev 6298)
@@ -147,7 +147,7 @@
{
print "texindex (GNU texinfo)", Texindex_version
print ""
- print _"Copyright (C) 2015 Free Software Foundation, Inc."
+ printf _"Copyright (C) %s Free Software Foundation, Inc.\n", "2015"
print _"License GPLv3+: GNU GPL version 3 or later
<http://gnu.org/licenses/gpl.html>"
print _"This is free software: you are free to change and redistribute it."
print _"There is NO WARRANTY, to the extent permitted by law."
@@ -161,7 +161,7 @@
EXIT_SUCCESS = 0
EXIT_FAILURE = 1
- Texindex_version = "5.2dev"
+ Texindex_version = "5.9.93"
if (! Invocation_name) {
# provide fallback in case it's not passed in.
Invocation_name = "texindex"
Modified: trunk/texindex/ti.twjr
===================================================================
--- trunk/texindex/ti.twjr 2015-05-31 21:33:20 UTC (rev 6297)
+++ trunk/texindex/ti.twjr 2015-05-31 22:32:08 UTC (rev 6298)
@@ -1254,7 +1254,7 @@
{
print "texindex (GNU texinfo)", Texindex_version
print ""
- print _"Copyright (C) 2015 Free Software Foundation, Inc."
+ printf _"Copyright (C) %s Free Software Foundation, Inc.\n", "2015"
print _"License GPLv3+: GNU GPL version 3 or later
<http://gnu.org/licenses/gpl.html>"
print _"This is free software: you are free to change and redistribute it."
print _"There is NO WARRANTY, to the extent permitted by law."
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [6298] use printf for copyright year,
karl <=