texinfo-commits
[Top][All Lists]
Advanced

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

texinfo update (Fri Aug 19 18:52:01 EDT 2005)


From: Karl Berry
Subject: texinfo update (Fri Aug 19 18:52:01 EDT 2005)
Date: Fri, 19 Aug 2005 18:52:06 -0400

Index: info/info.c
===================================================================
RCS file: /cvsroot/texinfo/texinfo/info/info.c,v
retrieving revision 1.12
retrieving revision 1.13
diff -c -r1.12 -r1.13
*** info/info.c 15 May 2005 00:00:07 -0000      1.12
--- info/info.c 19 Aug 2005 22:23:54 -0000      1.13
***************
*** 1,8 ****
  /* info.c -- Display nodes of Info files in multiple windows.
!    $Id: info.c,v 1.12 2005/05/15 00:00:07 karl Exp $
  
     Copyright (C) 1993, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
!    2004 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
--- 1,8 ----
  /* info.c -- Display nodes of Info files in multiple windows.
!    $Id: info.c,v 1.13 2005/08/19 22:23:54 karl Exp $
  
     Copyright (C) 1993, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
!    2004, 2005 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
***************
*** 15,22 ****
     GNU General Public License for more details.
  
     You should have received a copy of the GNU General Public License
!    along with this program; if not, write to the Free Software
!    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 
USA.
  
     Written by Brian Fox (address@hidden). */
  
--- 15,22 ----
     GNU General Public License for more details.
  
     You should have received a copy of the GNU General Public License
!    along with this program; if not, write to the Free Software Foundation,
!    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  
     Written by Brian Fox (address@hidden). */
  
***************
*** 289,300 ****
    /* If the user specified --version, then show the version and exit. */
    if (print_version_p)
      {
!       printf ("%s (GNU %s) %s\n", program_name, PACKAGE, VERSION);
        puts ("");
!       puts ("Copyright (C) 2004 Free Software Foundation, Inc.");
!       printf (_("There is NO warranty.  You may redistribute this software\n\
  under the terms of the GNU General Public License.\n\
! For more information about these matters, see the files named COPYING.\n"));
        xexit (0);
      }
  
--- 289,303 ----
    /* If the user specified --version, then show the version and exit. */
    if (print_version_p)
      {
!       printf ("info (GNU %s) %s\n", PACKAGE, VERSION);
        puts ("");
!       printf (_("\
! Copyright (C) %s Free Software Foundation, Inc.\n\
! There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A\n\
! PARTICULAR PURPOSE.  You may redistribute copies of GNU %s\n\
  under the terms of the GNU General Public License.\n\
! For more information about these matters, see the file named COPYING.\n"),
!               "2005", PACKAGE);
        xexit (0);
      }
  
Index: info/infokey.c
===================================================================
RCS file: /cvsroot/texinfo/texinfo/info/infokey.c,v
retrieving revision 1.10
retrieving revision 1.11
diff -c -r1.10 -r1.11
*** info/infokey.c      15 May 2005 00:00:07 -0000      1.10
--- info/infokey.c      19 Aug 2005 22:23:54 -0000      1.11
***************
*** 1,7 ****
  /* infokey.c -- compile ~/.infokey to ~/.info.
!    $Id: infokey.c,v 1.10 2005/05/15 00:00:07 karl Exp $
  
!    Copyright (C) 1999, 2001, 2002, 2003, 2004 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
--- 1,8 ----
  /* infokey.c -- compile ~/.infokey to ~/.info.
!    $Id: infokey.c,v 1.11 2005/08/19 22:23:54 karl Exp $
  
!    Copyright (C) 1999, 2001, 2002, 2003, 2004, 2005 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
***************
*** 14,21 ****
     GNU General Public License for more details.
  
     You should have received a copy of the GNU General Public License
!    along with this program; if not, write to the Free Software
!    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 
USA.
  
     Written by Andrew Bettison <address@hidden>. */
  
--- 15,22 ----
     GNU General Public License for more details.
  
     You should have received a copy of the GNU General Public License
!    along with this program; if not, write to the Free Software Foundation,
!    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  
     Written by Andrew Bettison <address@hidden>. */
  
***************
*** 142,152 ****
      {
        printf ("%s (GNU %s) %s\n", program_name, PACKAGE, VERSION);
        puts ("");
!       printf (_ ("Copyright (C) %s Free Software Foundation, Inc.\n\
! There is NO warranty.  You may redistribute this software\n\
  under the terms of the GNU General Public License.\n\
! For more information about these matters, see the files named COPYING.\n"),
!             "2003");
        xexit (0);
      }
  
--- 143,155 ----
      {
        printf ("%s (GNU %s) %s\n", program_name, PACKAGE, VERSION);
        puts ("");
!       printf (_("\
! Copyright (C) %s Free Software Foundation, Inc.\n\
! There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A\n\
! PARTICULAR PURPOSE.  You may redistribute copies of GNU %s\n\
  under the terms of the GNU General Public License.\n\
! For more information about these matters, see the file named COPYING.\n"),
!               "2005", PACKAGE);
        xexit (0);
      }
  
Index: makeinfo/makeinfo.c
===================================================================
RCS file: /cvsroot/texinfo/texinfo/makeinfo/makeinfo.c,v
retrieving revision 1.82
retrieving revision 1.83
diff -c -r1.82 -r1.83
*** makeinfo/makeinfo.c 15 May 2005 00:00:07 -0000      1.82
--- makeinfo/makeinfo.c 19 Aug 2005 22:23:54 -0000      1.83
***************
*** 1,5 ****
  /* makeinfo -- convert Texinfo source into other formats.
!    $Id: makeinfo.c,v 1.82 2005/05/15 00:00:07 karl Exp $
  
     Copyright (C) 1987, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
     2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
--- 1,5 ----
  /* makeinfo -- convert Texinfo source into other formats.
!    $Id: makeinfo.c,v 1.83 2005/08/19 22:23:54 karl Exp $
  
     Copyright (C) 1987, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
     2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
***************
*** 15,22 ****
     GNU General Public License for more details.
  
     You should have received a copy of the GNU General Public License
!    along with this program; if not, write to the Free Software
!    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 
USA.
  
     Original author of makeinfo: Brian Fox (address@hidden).  */
  
--- 15,22 ----
     GNU General Public License for more details.
  
     You should have received a copy of the GNU General Public License
!    along with this program; if not, write to the Free Software Foundation,
!    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  
     Original author of makeinfo: Brian Fox (address@hidden).  */
  
***************
*** 762,771 ****
          case 'V': /* --version */
            print_version_info ();
            puts ("");
!           puts ("Copyright (C) 2004 Free Software Foundation, Inc.");
!           printf (_("There is NO warranty.  You may redistribute this 
software\n\
  under the terms of the GNU General Public License.\n\
! For more information about these matters, see the files named COPYING.\n"));
            xexit (0);
            break;
  
--- 762,774 ----
          case 'V': /* --version */
            print_version_info ();
            puts ("");
!       printf (_("\
! Copyright (C) %s Free Software Foundation, Inc.\n\
! There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A\n\
! PARTICULAR PURPOSE.  You may redistribute copies of GNU %s\n\
  under the terms of the GNU General Public License.\n\
! For more information about these matters, see the file named COPYING.\n"),
!               "2005", PACKAGE);
            xexit (0);
            break;
  
Index: util/install-info.c
===================================================================
RCS file: /cvsroot/texinfo/texinfo/util/install-info.c,v
retrieving revision 1.13
retrieving revision 1.14
diff -c -r1.13 -r1.14
*** util/install-info.c 15 May 2005 00:00:08 -0000      1.13
--- util/install-info.c 19 Aug 2005 22:23:54 -0000      1.14
***************
*** 1,8 ****
  /* install-info -- create Info directory entry(ies) for an Info file.
!    $Id: install-info.c,v 1.13 2005/05/15 00:00:08 karl Exp $
  
!    Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 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
--- 1,8 ----
  /* install-info -- create Info directory entry(ies) for an Info file.
!    $Id: install-info.c,v 1.14 2005/08/19 22:23:54 karl Exp $
  
!    Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
!    2005 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
***************
*** 15,22 ****
     GNU General Public License for more details.
  
     You should have received a copy of the GNU General Public License
!    along with this program; if not, write to the Free Software
!    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 
USA.*/
  
  #include "system.h"
  #include <getopt.h>
--- 15,22 ----
     GNU General Public License for more details.
  
     You should have received a copy of the GNU General Public License
!    along with this program; if not, write to the Free Software Foundation,
!    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
  #include "system.h"
  #include <getopt.h>
***************
*** 1262,1271 ****
          case 'V':
            printf ("install-info (GNU %s) %s\n", PACKAGE, VERSION);
            puts ("");
!           puts ("Copyright (C) 2004 Free Software Foundation, Inc.");
!           printf (_("There is NO warranty.  You may redistribute this 
software\n\
  under the terms of the GNU General Public License.\n\
! For more information about these matters, see the files named COPYING.\n"));
            xexit (0);
  
          default:
--- 1262,1274 ----
          case 'V':
            printf ("install-info (GNU %s) %s\n", PACKAGE, VERSION);
            puts ("");
!       printf (_("\
! Copyright (C) %s Free Software Foundation, Inc.\n\
! There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A\n\
! PARTICULAR PURPOSE.  You may redistribute copies of GNU %s\n\
  under the terms of the GNU General Public License.\n\
! For more information about these matters, see the file named COPYING.\n"),
!               "2005", PACKAGE);
            xexit (0);
  
          default:
Index: util/texi2dvi
===================================================================
RCS file: /cvsroot/texinfo/texinfo/util/texi2dvi,v
retrieving revision 1.57
retrieving revision 1.58
diff -c -r1.57 -r1.58
*** util/texi2dvi       24 Jun 2005 15:25:41 -0000      1.57
--- util/texi2dvi       19 Aug 2005 22:23:54 -0000      1.58
***************
*** 1,6 ****
  #! /bin/sh
  # texi2dvi --- produce DVI (or PDF) files from Texinfo (or LaTeX) sources.
! # $Id: texi2dvi,v 1.57 2005/06/24 15:25:41 karl Exp $
  #
  # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2001,
  # 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
--- 1,6 ----
  #! /bin/sh
  # texi2dvi --- produce DVI (or PDF) files from Texinfo (or LaTeX) sources.
! # $Id: texi2dvi,v 1.58 2005/08/19 22:23:54 karl Exp $
  #
  # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2001,
  # 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
***************
*** 32,46 ****
  unset RUNNING_KSH
  
  # This string is expanded by rcs automatically when this file is checked out.
! rcs_revision='$Revision: 1.57 $'
  rcs_version=`set - $rcs_revision; echo $2`
  program=`echo $0 | sed -e 's!.*/!!'`
  version="texi2dvi (GNU Texinfo 4.8) $rcs_version
  
  Copyright (C) 2005 Free Software Foundation, Inc.
! There is NO warranty.  You may redistribute this software
  under the terms of the GNU General Public License.
! For more information about these matters, see the files named COPYING."
  
  build_mode=${TEXI2DVI_BUILD_MODE:-local}
  
--- 32,48 ----
  unset RUNNING_KSH
  
  # This string is expanded by rcs automatically when this file is checked out.
! rcs_revision='$Revision: 1.58 $'
  rcs_version=`set - $rcs_revision; echo $2`
  program=`echo $0 | sed -e 's!.*/!!'`
  version="texi2dvi (GNU Texinfo 4.8) $rcs_version
  
  Copyright (C) 2005 Free Software Foundation, Inc.
! There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A
! PARTICULAR PURPOSE.  You may redistribute copies of GNU texinfo
  under the terms of the GNU General Public License.
! For more information about these matters, see the file named COPYING.
! "
  
  build_mode=${TEXI2DVI_BUILD_MODE:-local}
  
Index: util/texindex.c
===================================================================
RCS file: /cvsroot/texinfo/texinfo/util/texindex.c,v
retrieving revision 1.12
retrieving revision 1.13
diff -c -r1.12 -r1.13
*** util/texindex.c     15 May 2005 00:00:08 -0000      1.12
--- util/texindex.c     19 Aug 2005 22:23:54 -0000      1.13
***************
*** 1,8 ****
  /* texindex -- sort TeX index dribble output into an actual index.
!    $Id: texindex.c,v 1.12 2005/05/15 00:00:08 karl Exp $
  
     Copyright (C) 1987, 1991, 1992, 1996, 1997, 1998, 1999, 2000, 2001,
!    2002, 2003, 2004 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
--- 1,8 ----
  /* texindex -- sort TeX index dribble output into an actual index.
!    $Id: texindex.c,v 1.13 2005/08/19 22:23:54 karl Exp $
  
     Copyright (C) 1987, 1991, 1992, 1996, 1997, 1998, 1999, 2000, 2001,
!    2002, 2003, 2004, 2005 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
***************
*** 339,348 ****
              {
                printf ("texindex (GNU %s) %s\n", PACKAGE, VERSION);
                puts ("");
!               puts ("Copyright (C) 2004 Free Software Foundation, Inc.");
!               printf (_("There is NO warranty.  You may redistribute this 
software\n\
  under the terms of the GNU General Public License.\n\
! For more information about these matters, see the files named COPYING.\n"));
                xexit (0);
              }
            else if ((strcmp (arg, "--keep") == 0) ||
--- 339,351 ----
              {
                printf ("texindex (GNU %s) %s\n", PACKAGE, VERSION);
                puts ("");
!       printf (_("\
! Copyright (C) %s Free Software Foundation, Inc.\n\
! There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A\n\
! PARTICULAR PURPOSE.  You may redistribute copies of GNU %s\n\
  under the terms of the GNU General Public License.\n\
! For more information about these matters, see the file named COPYING.\n"),
!               "2005", PACKAGE);
                xexit (0);
              }
            else if ((strcmp (arg, "--keep") == 0) ||
P info/info.c
P info/infokey.c
P makeinfo/makeinfo.c
P util/install-info.c
P util/texi2dvi
P util/texindex.c


reply via email to

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