texinfo-commits
[Top][All Lists]
Advanced

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

texinfo update (Mon May 9 20:22:01 EDT 2005)


From: Karl Berry
Subject: texinfo update (Mon May 9 20:22:01 EDT 2005)
Date: Mon, 09 May 2005 20:22:11 -0400

Index: ChangeLog
===================================================================
RCS file: /cvsroot/texinfo/texinfo/ChangeLog,v
retrieving revision 1.498
retrieving revision 1.499
diff -c -r1.498 -r1.499
*** ChangeLog   9 May 2005 18:24:26 -0000       1.498
--- ChangeLog   9 May 2005 23:53:37 -0000       1.499
***************
*** 1,3 ****
--- 1,9 ----
+ 2005-05-09  Andreas Vögele  <address@hidden>  (tiny change)
+ 
+       * makeinfo/multi.c (output_multitable_row): don't look past
+               beginning of cell memory.  bug-texinfo mail,
+               1 May 2005 10:00:33 +0200.
+ 
  2005-05-09  Christian von Schultz  <address@hidden>  (tiny change)
  
        * doc/texinfo.txi (Emacs chapter): wrong key bindings for
Index: makeinfo/multi.c
===================================================================
RCS file: /cvsroot/texinfo/texinfo/makeinfo/multi.c,v
retrieving revision 1.9
retrieving revision 1.10
diff -c -r1.9 -r1.10
*** makeinfo/multi.c    5 Apr 2005 21:04:16 -0000       1.9
--- makeinfo/multi.c    9 May 2005 23:53:37 -0000       1.10
***************
*** 1,8 ****
  /* multi.c -- multiple-column tables (@multitable) for makeinfo.
!    $Id: multi.c,v 1.9 2005/04/05 21:04:16 karl Exp $
  
!    Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 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 ----
  /* multi.c -- multiple-column tables (@multitable) for makeinfo.
!    $Id: multi.c,v 1.10 2005/05/09 23:53:37 karl Exp $
  
!    Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 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
***************
*** 430,438 ****
  
    /* remove trailing whitespace from each column */
    for (i = 1; i <= last_column; i++) {
!     if (envs[i].output_paragraph_offset)
!       while (cr_or_whitespace (CHAR_AT (envs[i].output_paragraph_offset - 1)))
!         envs[i].output_paragraph_offset--;
  
      if (i == current_env_no)
        output_paragraph_offset = envs[i].output_paragraph_offset;
--- 430,438 ----
  
    /* remove trailing whitespace from each column */
    for (i = 1; i <= last_column; i++) {
!     while (envs[i].output_paragraph_offset
!            && cr_or_whitespace (CHAR_AT (envs[i].output_paragraph_offset - 
1)))
!       envs[i].output_paragraph_offset--;
  
      if (i == current_env_no)
        output_paragraph_offset = envs[i].output_paragraph_offset;
P ChangeLog
P makeinfo/multi.c


reply via email to

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