texinfo-commits
[Top][All Lists]
Advanced

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

texinfo update (Mon Dec 20 18:52:01 EST 2004)


From: Karl Berry
Subject: texinfo update (Mon Dec 20 18:52:01 EST 2004)
Date: Mon, 20 Dec 2004 18:52:20 -0500

Index: ChangeLog
===================================================================
RCS file: /cvsroot/texinfo/texinfo/ChangeLog,v
retrieving revision 1.441
retrieving revision 1.442
diff -c -r1.441 -r1.442
*** ChangeLog   19 Dec 2004 17:15:42 -0000      1.441
--- ChangeLog   20 Dec 2004 23:56:06 -0000      1.442
***************
*** 1,3 ****
--- 1,9 ----
+ 2004-12-20  Karl Berry  <address@hidden>
+ 
+       * makeinfo/html.c (cm_node) <html>: need old-style names in the normal
+       (not no_headers) html case, too, of course.
+       (add_html_names): canon_white the new name, too.
+ 
  2004-12-19  Karl Berry  <address@hidden>
  
        * pretest version 4.7.93.
Index: makeinfo/node.c
===================================================================
RCS file: /cvsroot/texinfo/texinfo/makeinfo/node.c,v
retrieving revision 1.26
retrieving revision 1.27
diff -c -r1.26 -r1.27
*** makeinfo/node.c     15 Dec 2004 15:12:58 -0000      1.26
--- makeinfo/node.c     20 Dec 2004 23:56:07 -0000      1.27
***************
*** 1,5 ****
  /* node.c -- nodes for Texinfo.
!    $Id: node.c,v 1.26 2004/12/15 15:12:58 karl Exp $
  
     Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004 Free Software
     Foundation, Inc.
--- 1,5 ----
  /* node.c -- nodes for Texinfo.
!    $Id: node.c,v 1.27 2004/12/20 23:56:07 karl Exp $
  
     Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004 Free Software
     Foundation, Inc.
***************
*** 520,525 ****
--- 520,526 ----
    }
  
    /* Always output the new scheme.  */
+   canon_white (tem);
    add_word ("<a name=\"");
    add_anchor_name (tem, 0);
    add_word ("\"></a>\n");
***************
*** 978,990 ****
            /* The <p> avoids the links area running on with old Lynxen. */
            add_word_args ("<p>%s\n", splitting ? "" : "<hr>");
  
!           /* In the split HTML case, there's no point in adding the
!              old-style converted names, since the filename is wrong.  */
!           tem = expand_node_name (node);
!           add_word ("<a name=\"");
!           add_anchor_name (tem, 0);
!           add_word ("\"></a>\n");
!           free (tem);
  
            if (next)
              {
--- 979,989 ----
            /* The <p> avoids the links area running on with old Lynxen. */
            add_word_args ("<p>%s\n", splitting ? "" : "<hr>");
  
!           /* In the split HTML case, the filename is wrong for the 
!              old-style converted names, but we'll add them anyway, for
!              consistency.  (And we need them in the normal (not
!              no_headers) nonsplit case.)  */
!           add_html_names (node);
  
            if (next)
              {
P ChangeLog
P makeinfo/node.c


reply via email to

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