texinfo-commits
[Top][All Lists]
Advanced

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

texinfo update (Mon Aug 2 10:22:01 EDT 2004)


From: Karl Berry
Subject: texinfo update (Mon Aug 2 10:22:01 EDT 2004)
Date: Mon, 02 Aug 2004 10:22:14 -0400

Index: ChangeLog
===================================================================
RCS file: /cvsroot/texinfo/texinfo/ChangeLog,v
retrieving revision 1.367
retrieving revision 1.368
diff -c -r1.367 -r1.368
*** ChangeLog   31 Jul 2004 18:49:51 -0000      1.367
--- ChangeLog   2 Aug 2004 14:10:41 -0000       1.368
***************
*** 1,3 ****
--- 1,9 ----
+ 2004-08-02  Karl Berry  <address@hidden>
+ 
+       * makeinfo/cmds.c (cm_acronym_or_abbr): use strchr, not index.
+       Report from: Prof Brian Ripley <address@hidden>, 
+       2 Aug 2004 12:47:36 +0100 (BST)
+ 
  2004-07-31  Karl Berry  <address@hidden>
  
        * doc/texinfo.txi,
Index: makeinfo/cmds.c
===================================================================
RCS file: /cvsroot/texinfo/texinfo/makeinfo/cmds.c,v
retrieving revision 1.51
retrieving revision 1.52
diff -c -r1.51 -r1.52
*** makeinfo/cmds.c     31 Jul 2004 18:49:51 -0000      1.51
--- makeinfo/cmds.c     2 Aug 2004 14:10:41 -0000       1.52
***************
*** 1,5 ****
  /* cmds.c -- Texinfo commands.
!    $Id: cmds.c,v 1.51 2004/07/31 18:49:51 karl Exp $
  
     Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004 Free Software
     Foundation, Inc.
--- 1,5 ----
  /* cmds.c -- Texinfo commands.
!    $Id: cmds.c,v 1.52 2004/08/02 14:10:41 karl Exp $
  
     Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004 Free Software
     Foundation, Inc.
***************
*** 674,680 ****
  
    /* If not enclosed in braces, strip after comma to be compatible
       with texinfo.tex.  */
!   if (description[0] != '{' && index (description, ',') != NULL)
      {
        int i = 0;
        while (description[i] != ',')
--- 674,680 ----
  
    /* If not enclosed in braces, strip after comma to be compatible
       with texinfo.tex.  */
!   if (description[0] != '{' && strchr (description, ',') != NULL)
      {
        int i = 0;
        while (description[i] != ',')
P ChangeLog
P makeinfo/cmds.c


reply via email to

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