texinfo-commits
[Top][All Lists]
Advanced

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

texinfo update (Mon Feb 13 20:22:01 EST 2006)


From: Karl Berry
Subject: texinfo update (Mon Feb 13 20:22:01 EST 2006)
Date: Mon, 13 Feb 2006 20:22:03 -0500

Index: ChangeLog
===================================================================
RCS file: /sources/texinfo/texinfo/ChangeLog,v
retrieving revision 1.570
retrieving revision 1.571
diff -u -r1.570 -r1.571
--- ChangeLog   14 Feb 2006 00:44:10 -0000      1.570
+++ ChangeLog   14 Feb 2006 01:10:40 -0000      1.571
@@ -1,5 +1,8 @@
 2006-02-13  Karl Berry  <address@hidden>
 
+       * makeinfo/cmds.c (cm_enddots): output three dots, not four, for
+       consistency with texinfo.tex.
+
        * doc/texinfo.tex (\doignore): move \obeylines here.
        (\dodoignore): from here.  (just putting catcode changes together.)
        (\doignoretextyyy): revert to previous code, no ##2^^M;
Index: NEWS
===================================================================
RCS file: /sources/texinfo/texinfo/NEWS,v
retrieving revision 1.119
retrieving revision 1.120
diff -u -r1.119 -r1.120
--- NEWS        13 Jan 2006 22:12:16 -0000      1.119
+++ NEWS        14 Feb 2006 01:10:41 -0000      1.120
@@ -1,4 +1,4 @@
-$Id: NEWS,v 1.119 2006/01/13 22:12:16 karl Exp $
+$Id: NEWS,v 1.120 2006/02/14 01:10:41 karl Exp $
 This NEWS file records noteworthy changes, very tersely.
 See the manual for detailed information.
 
@@ -27,6 +27,12 @@
   . new command @frenchspacing to control spacing after sentences.
 * makeinfo:
   . improved Docbook output.
+  . @enddots{} outputs three dots instead of four, for consistency with
+    texinfo.tex.
+  . the Local Variables coding: setting written by --enable-encoding now
+    comes at the very end, after the tags table, so that Emacs might
+    actually find it.
+  . improvements to XML and Docbook output and the DTD.
 * texi2dvi:
   . new mode --build=tidy which supports compilation in a separate
     directory, where intermediate files are preserved.
@@ -45,6 +51,7 @@
 * info:
   . look for info files in the current directory first, by default.
   . when calling man, use -a if no explicit section is found.
+  . avoid showing the top(1) man page for nonexistent info files.
 * Distribution:
   . automake 1.9.6, gettext 0.14.5.
   . gettext support now [external].
Index: makeinfo/cmds.c
===================================================================
RCS file: /sources/texinfo/texinfo/makeinfo/cmds.c,v
retrieving revision 1.62
retrieving revision 1.63
diff -u -r1.62 -r1.63
--- makeinfo/cmds.c     17 Sep 2005 21:56:55 -0000      1.62
+++ makeinfo/cmds.c     14 Feb 2006 01:05:59 -0000      1.63
@@ -1,8 +1,8 @@
 /* cmds.c -- Texinfo commands.
-   $Id: cmds.c,v 1.62 2005/09/17 21:56:55 karl Exp $
+   $Id: cmds.c,v 1.63 2006/02/14 01:05:59 karl Exp $
 
-   Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 Free
-   Software Foundation, Inc.
+   Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006
+   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
@@ -454,9 +454,9 @@
        }
       else
        if (html && !in_fixed_width_font)
-         insert_string ("<small class=\"enddots\">....</small>");
+         insert_string ("<small class=\"enddots\">...</small>");
        else
-         add_word ("....");
+         add_word ("...");
     }
 }
 
P ChangeLog
P NEWS
P makeinfo/cmds.c


reply via email to

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