texinfo-commits
[Top][All Lists]
Advanced

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

texinfo update (Tue Nov 30 08:22:01 EST 2004)


From: Karl Berry
Subject: texinfo update (Tue Nov 30 08:22:01 EST 2004)
Date: Tue, 30 Nov 2004 08:22:17 -0500

Index: ChangeLog
===================================================================
RCS file: /cvsroot/texinfo/texinfo/ChangeLog,v
retrieving revision 1.417
retrieving revision 1.418
diff -c -r1.417 -r1.418
*** ChangeLog   30 Nov 2004 02:03:23 -0000      1.417
--- ChangeLog   30 Nov 2004 13:26:49 -0000      1.418
***************
*** 1,3 ****
--- 1,11 ----
+ 2004-11-30  Karl Berry  <address@hidden>
+ 
+       * doc/texinfo.txi (Quotations and Examples): @quotation does not
+       reduce interparagraph spacing.
+       
+       * makeinfo/node.c (cm_node) <html>: do not bother calling
+       add_html_nodes in the split case, the filename is wrong.
+ 
  2004-11-29  Karl Berry  <address@hidden>
  
        Support for writing <a name="..."> using the old-style node name
Index: makeinfo/node.c
===================================================================
RCS file: /cvsroot/texinfo/texinfo/makeinfo/node.c,v
retrieving revision 1.24
retrieving revision 1.25
diff -c -r1.24 -r1.25
*** makeinfo/node.c     30 Nov 2004 02:03:23 -0000      1.24
--- makeinfo/node.c     30 Nov 2004 13:26:50 -0000      1.25
***************
*** 1,5 ****
  /* node.c -- nodes for Texinfo.
!    $Id: node.c,v 1.24 2004/11/30 02:03:23 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.25 2004/11/30 13:26:50 karl Exp $
  
     Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004 Free Software
     Foundation, Inc.
***************
*** 977,983 ****
            add_html_block_elt ("<div class=\"node\">\n");
            /* The <p> avoids the links area running on with old Lynxen. */
            add_word_args ("<p>%s\n", splitting ? "" : "<hr>");
!           add_html_names (node);
  
            if (next)
              {
--- 977,990 ----
            add_html_block_elt ("<div class=\"node\">\n");
            /* 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)
              {
P ChangeLog
P makeinfo/node.c


reply via email to

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