texinfo-commits
[Top][All Lists]
Advanced

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

texinfo update (Fri Sep 21 18:53:01 EDT 2007)


From: Karl Berry
Subject: texinfo update (Fri Sep 21 18:53:01 EDT 2007)
Date: Fri, 21 Sep 2007 18:53:03 -0400

Index: ChangeLog
===================================================================
RCS file: /sources/texinfo/texinfo/ChangeLog,v
retrieving revision 1.759
retrieving revision 1.761
diff -u -r1.759 -r1.761
--- ChangeLog   20 Sep 2007 17:21:59 -0000      1.759
+++ ChangeLog   21 Sep 2007 22:51:12 -0000      1.761
@@ -1,3 +1,15 @@
+2007-09-21  Stephen Compall <address@hidden>
+
+       * makeinfo/makeinfo.c (convert_from_file): excise code testing
+       case in suffixes that doesn't arise.
+
+2007-09-21  Karl Berry  <address@hidden>
+
+       * makeinfo/makeinfo.c,
+       * info/info.c,
+       * util/texindex.c,
+       * util/install-info.c (main): unify declaration on char *argv[].
+
 2007-09-20  Greg Schafer <address@hidden>  (tiny change)
 
        * util/dvipdf.test,
Index: info/info.c
===================================================================
RCS file: /sources/texinfo/texinfo/info/info.c,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- info/info.c 1 Sep 2007 00:05:23 -0000       1.20
+++ info/info.c 21 Sep 2007 22:49:26 -0000      1.21
@@ -1,5 +1,5 @@
 /* info.c -- Display nodes of Info files in multiple windows.
-   $Id: info.c,v 1.20 2007/09/01 00:05:23 karl Exp $
+   $Id: info.c,v 1.21 2007/09/21 22:49:26 karl Exp $
 
    Copyright (C) 1993, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
    2004, 2005, 2007 Free Software Foundation, Inc.
@@ -145,7 +145,7 @@
 /* **************************************************************** */
 
 int
-main (int argc, char **argv)
+main (int argc, char *argv[])
 {
   int getopt_long_index;        /* Index returned by getopt_long (). */
   NODE *initial_node;           /* First node loaded by Info. */
Index: makeinfo/makeinfo.c
===================================================================
RCS file: /sources/texinfo/texinfo/makeinfo/makeinfo.c,v
retrieving revision 1.106
retrieving revision 1.108
diff -u -r1.106 -r1.108
--- makeinfo/makeinfo.c 15 Sep 2007 23:48:45 -0000      1.106
+++ makeinfo/makeinfo.c 21 Sep 2007 22:51:12 -0000      1.108
@@ -1,5 +1,5 @@
 /* makeinfo -- convert Texinfo source into other formats.
-   $Id: makeinfo.c,v 1.106 2007/09/15 23:48:45 karl Exp $
+   $Id: makeinfo.c,v 1.108 2007/09/21 22:51:12 karl Exp $
 
    Copyright (C) 1987, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
    2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007
@@ -550,7 +550,7 @@
 /* For each file mentioned in the command line, process it, turning
    Texinfo commands into wonderfully formatted output text. */
 int
-main (int argc, char **argv)
+main (int argc, char *argv[])
 {
   int c, ind;
   int reading_from_stdin = 0;
@@ -1382,13 +1382,6 @@
 
       if (find_and_load (filename, 1))
         break;
-
-      if (!suffixes[i][0] && strrchr (filename, '.'))
-        {
-          fs_error (filename);
-          free (filename);
-          return;
-        }
     }
 
   if (!suffixes[i])
Index: util/install-info.c
===================================================================
RCS file: /sources/texinfo/texinfo/util/install-info.c,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- util/install-info.c 1 Jul 2007 21:20:33 -0000       1.18
+++ util/install-info.c 21 Sep 2007 22:49:26 -0000      1.19
@@ -1,5 +1,5 @@
 /* install-info -- create Info directory entry(ies) for an Info file.
-   $Id: install-info.c,v 1.18 2007/07/01 21:20:33 karl Exp $
+   $Id: install-info.c,v 1.19 2007/09/21 22:49:26 karl Exp $
 
    Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
    2005, 2007 Free Software Foundation, Inc.
@@ -1154,7 +1154,7 @@
 }
 
 int
-main (int argc, char **argv)
+main (int argc, char *argv[])
 {
   char *opened_dirfilename;
   char *compression_program;
Index: util/texindex.c
===================================================================
RCS file: /sources/texinfo/texinfo/util/texindex.c,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- util/texindex.c     1 Jul 2007 21:20:34 -0000       1.22
+++ util/texindex.c     21 Sep 2007 22:49:26 -0000      1.23
@@ -1,5 +1,5 @@
 /* texindex -- sort TeX index dribble output into an actual index.
-   $Id: texindex.c,v 1.22 2007/07/01 21:20:34 karl Exp $
+   $Id: texindex.c,v 1.23 2007/09/21 22:49:26 karl Exp $
 
    Copyright (C) 1987, 1991, 1992, 1996, 1997, 1998, 1999, 2000, 2001,
    2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
@@ -123,7 +123,7 @@
 static char *concat3 (const char *, const char *, const char *);
 
 int
-main (int argc, char **argv)
+main (int argc, char *argv[])
 {
   int i;
 
P ChangeLog
P info/info.c
P makeinfo/makeinfo.c
P util/install-info.c
P util/texindex.c




reply via email to

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