texinfo-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

texinfo util/texi2pdf util/texindex.c install-i...


From: Karl Berry
Subject: texinfo util/texi2pdf util/texindex.c install-i...
Date: Tue, 18 Oct 2011 18:36:57 +0000

CVSROOT:        /sources/texinfo
Module name:    texinfo
Changes by:     Karl Berry <karl>       11/10/18 18:36:57

Modified files:
        util           : texi2pdf texindex.c 
        install-info   : install-info.c 
        info           : info.c infokey.c 

Log message:
        copyright year in version output

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/texinfo/util/texi2pdf?cvsroot=texinfo&r1=1.3&r2=1.4
http://cvs.savannah.gnu.org/viewcvs/texinfo/util/texindex.c?cvsroot=texinfo&r1=1.25&r2=1.26
http://cvs.savannah.gnu.org/viewcvs/texinfo/install-info/install-info.c?cvsroot=texinfo&r1=1.16&r2=1.17
http://cvs.savannah.gnu.org/viewcvs/texinfo/info/info.c?cvsroot=texinfo&r1=1.37&r2=1.38
http://cvs.savannah.gnu.org/viewcvs/texinfo/info/infokey.c?cvsroot=texinfo&r1=1.19&r2=1.20

Patches:
Index: util/texi2pdf
===================================================================
RCS file: /sources/texinfo/texinfo/util/texi2pdf,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -b -r1.3 -r1.4
--- util/texi2pdf       13 Apr 2009 00:29:38 -0000      1.3
+++ util/texi2pdf       18 Oct 2011 18:36:56 -0000      1.4
@@ -1,5 +1,5 @@
 #!/bin/sh
-# $Id: texi2pdf,v 1.3 2009/04/13 00:29:38 karl Exp $
+# $Id: texi2pdf,v 1.4 2011/10/18 18:36:56 karl Exp $
 # Written by Thomas Esser.  Public domain.
 # Execute texi2dvi --pdf.
 
@@ -16,7 +16,7 @@
 # hack around a bug in zsh:
 test -n "${ZSH_VERSION+set}" && alias -g '${1+"$@"}'='"$@"'
 
-rcs_revision='$Revision: 1.3 $'
+rcs_revision='$Revision: 1.4 $'
 rcs_version=`set - $rcs_revision; echo $2`
 
 # special-case --version following GNU standards for identifying the
@@ -25,9 +25,9 @@
 # obliged to.
 if test "x$1" = x--version; then
   cat <<EOF
-texi2pdf (GNU Texinfo 4.13) $rcs_version
+texi2pdf (GNU Texinfo 4.13+dev) $rcs_version
 
-Copyright (C) 2009 Free Software Foundation, Inc.
+Copyright (C) 2011 Free Software Foundation, Inc.
 License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
 This is free software: you are free to change and redistribute it.
 There is NO WARRANTY, to the extent permitted by law.

Index: util/texindex.c
===================================================================
RCS file: /sources/texinfo/texinfo/util/texindex.c,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -b -r1.25 -r1.26
--- util/texindex.c     6 Apr 2011 21:23:04 -0000       1.25
+++ util/texindex.c     18 Oct 2011 18:36:56 -0000      1.26
@@ -1,8 +1,9 @@
 /* texindex -- sort TeX index dribble output into an actual index.
-   $Id: texindex.c,v 1.25 2011/04/06 21:23:04 gray Exp $
+   $Id: texindex.c,v 1.26 2011/10/18 18:36:56 karl Exp $
 
    Copyright (C) 1987, 1991, 1992, 1996, 1997, 1998, 1999, 2000, 2001,
-   2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
+   2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
+   Free Software Foundation, Inc.
 
    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
@@ -296,7 +297,7 @@
 License GPLv3+: GNU GPL version 3 or later 
<http://gnu.org/licenses/gpl.html>\n\
 This is free software: you are free to change and redistribute it.\n\
 There is NO WARRANTY, to the extent permitted by law.\n"),
-             "2008");
+             "2011");
               xexit (0);
             }
           else if ((strcmp (arg, "--keep") == 0) ||

Index: install-info/install-info.c
===================================================================
RCS file: /sources/texinfo/texinfo/install-info/install-info.c,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -b -r1.16 -r1.17
--- install-info/install-info.c 6 Apr 2011 21:20:08 -0000       1.16
+++ install-info/install-info.c 18 Oct 2011 18:36:56 -0000      1.17
@@ -1,8 +1,8 @@
 /* install-info -- create Info directory entry(ies) for an Info file.
-   $Id: install-info.c,v 1.16 2011/04/06 21:20:08 gray Exp $
+   $Id: install-info.c,v 1.17 2011/10/18 18:36:56 karl Exp $
 
    Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
-   2005, 2007, 2008, 2009 Free Software Foundation, Inc.
+   2005, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
 
    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
@@ -2134,7 +2134,7 @@
 License GPLv3+: GNU GPL version 3 or later 
<http://gnu.org/licenses/gpl.html>\n\
 This is free software: you are free to change and redistribute it.\n\
 There is NO WARRANTY, to the extent permitted by law.\n"),
-              "2008");
+              "2011");
           xexit (0);
 
         case 'W':

Index: info/info.c
===================================================================
RCS file: /sources/texinfo/texinfo/info/info.c,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -b -r1.37 -r1.38
--- info/info.c 28 Jul 2011 07:14:05 -0000      1.37
+++ info/info.c 18 Oct 2011 18:36:56 -0000      1.38
@@ -1,8 +1,9 @@
 /* info.c -- Display nodes of Info files in multiple windows.
-   $Id: info.c,v 1.37 2011/07/28 07:14:05 gray Exp $
+   $Id: info.c,v 1.38 2011/10/18 18:36:56 karl Exp $
 
    Copyright (C) 1993, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
-   2004, 2005, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
+   2004, 2005, 2007, 2008, 2009, 2010, 2011
+   Free Software Foundation, Inc.
 
    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
@@ -299,7 +300,7 @@
 License GPLv3+: GNU GPL version 3 or later 
<http://gnu.org/licenses/gpl.html>\n\
 This is free software: you are free to change and redistribute it.\n\
 There is NO WARRANTY, to the extent permitted by law.\n"),
-             "2008");
+             "2011");
       xexit (0);
     }
 

Index: info/infokey.c
===================================================================
RCS file: /sources/texinfo/texinfo/info/infokey.c,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -b -r1.19 -r1.20
--- info/infokey.c      6 Apr 2011 21:17:38 -0000       1.19
+++ info/infokey.c      18 Oct 2011 18:36:57 -0000      1.20
@@ -1,7 +1,8 @@
 /* infokey.c -- compile ~/.infokey to ~/.info.
-   $Id: infokey.c,v 1.19 2011/04/06 21:17:38 gray Exp $
+   $Id: infokey.c,v 1.20 2011/10/18 18:36:57 karl Exp $
 
-   Copyright (C) 1999, 2001, 2002, 2003, 2004, 2005, 2007, 2008
+   Copyright (C) 1999, 2001, 2002, 2003, 2004, 2005, 2007, 2008, 2009,
+   2010, 2011
    Free Software Foundation, Inc.
 
    This program is free software: you can redistribute it and/or modify
@@ -145,7 +146,7 @@
 License GPLv3+: GNU GPL version 3 or later 
<http://gnu.org/licenses/gpl.html>\n\
 This is free software: you are free to change and redistribute it.\n\
 There is NO WARRANTY, to the extent permitted by law.\n"),
-             "2008");
+             "2011");
       xexit (0);
     }
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]