texinfo-commits
[Top][All Lists]
Advanced

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

[6884] info fix display


From: Gavin D. Smith
Subject: [6884] info fix display
Date: Wed, 23 Dec 2015 11:26:53 +0000

Revision: 6884
          http://svn.sv.gnu.org/viewvc/?view=rev&root=texinfo&revision=6884
Author:   gavin
Date:     2015-12-23 11:26:47 +0000 (Wed, 23 Dec 2015)
Log Message:
-----------
info fix display

Modified Paths:
--------------
    trunk/ChangeLog
    trunk/info/display.c

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog     2015-12-22 18:54:36 UTC (rev 6883)
+++ trunk/ChangeLog     2015-12-23 11:26:47 UTC (rev 6884)
@@ -1,3 +1,9 @@
+2015-12-23  Gavin Smith  <address@hidden>
+
+       * info/display.c (display_update_node_text): Move an assignment 
+       to a variable back where it was before, moved on 2015-12-19.  
+       Fixes problem with display reported by Benno Schulenberg.
+
 2015-12-22  Gavin Smith  <address@hidden>
 
        * tp/texi2any.pl: Remove spurious space at end of #! line.

Modified: trunk/info/display.c
===================================================================
--- trunk/info/display.c        2015-12-22 18:54:36 UTC (rev 6883)
+++ trunk/info/display.c        2015-12-23 11:26:47 UTC (rev 6884)
@@ -540,7 +540,7 @@
   mbi_avail (iter);
   while (1)
     {
-      int delim = 0;
+      int delim;
       mbi_copy (&bol_iter, &iter);
       bol_ref_index = ref_index;
       bol_match_index = match_index;
@@ -552,6 +552,7 @@
 
       text_buffer_reset (&tb_printed_line);
 
+      delim = 0;
       /* Check if we have processed all the lines in the window. */
       if (pl_num == win->height)
         break;




reply via email to

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