texinfo-commits
[Top][All Lists]
Advanced

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

texinfo update (Thu Mar 20 14:53:01 EDT 2008)


From: Karl Berry
Subject: texinfo update (Thu Mar 20 14:53:01 EDT 2008)
Date: Thu, 20 Mar 2008 14:53:03 -0400

Index: ChangeLog
===================================================================
RCS file: /sources/texinfo/texinfo/ChangeLog,v
retrieving revision 1.859
retrieving revision 1.860
diff -u -r1.859 -r1.860
--- ChangeLog   17 Mar 2008 17:56:35 -0000      1.859
+++ ChangeLog   20 Mar 2008 18:37:58 -0000      1.860
@@ -1,3 +1,7 @@
+2008-03-20  Karl Berry  <address@hidden>
+
+       * info/info.c (main): avoid declaration after statement.
+
 2008-03-17  Karl Berry  <address@hidden>
 
        * texinfo.tex (\xrefX): avoid TeX expansions of _ etc.
Index: info/info.c
===================================================================
RCS file: /sources/texinfo/texinfo/info/info.c,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- info/info.c 26 Feb 2008 16:51:05 -0000      1.29
+++ info/info.c 20 Mar 2008 18:37:58 -0000      1.30
@@ -1,5 +1,5 @@
 /* info.c -- Display nodes of Info files in multiple windows.
-   $Id: info.c,v 1.29 2008/02/26 16:51:05 karl Exp $
+   $Id: info.c,v 1.30 2008/03/20 18:37:58 karl Exp $
 
    Copyright (C) 1993, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
    2004, 2005, 2007, 2008 Free Software Foundation, Inc.
@@ -396,6 +396,7 @@
   {
     const char *errstr;
     char *errarg1, *errarg2;
+    NODE *new_initial_node;
 
    /* If they say info -O info, we want to show them the invocation node
       for standalone info; there's nothing useful in info.texi.  */
@@ -403,7 +404,7 @@
        && mbscasecmp (argv[optind], "info") == 0)
      argv[optind] = "info-stnd";
 
-    NODE *new_initial_node = info_follow_menus (initial_node, argv + optind,
+    new_initial_node = info_follow_menus (initial_node, argv + optind,
         &errstr, &errarg1, &errarg2);
 
     if (new_initial_node && new_initial_node != initial_node)
P ChangeLog
P info/info.c




reply via email to

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