texinfo-commits
[Top][All Lists]
Advanced

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

texinfo update (Thu Nov 25 19:52:01 EST 2004)


From: Karl Berry
Subject: texinfo update (Thu Nov 25 19:52:01 EST 2004)
Date: Thu, 25 Nov 2004 19:52:18 -0500

Index: ChangeLog
===================================================================
RCS file: /cvsroot/texinfo/texinfo/ChangeLog,v
retrieving revision 1.413
retrieving revision 1.415
diff -c -r1.413 -r1.415
*** ChangeLog   22 Nov 2004 23:57:32 -0000      1.413
--- ChangeLog   26 Nov 2004 00:48:35 -0000      1.415
***************
*** 1,3 ****
--- 1,19 ----
+ 2004-11-25  Karl Berry  <address@hidden>
+ 
+       * doc/texinfo.txi (Fonts): document new command @sansserif.
+       * doc/texinfo.tex (\sansserif): new command.
+       * makeinfo/cmds.h (cm_sansserif): new cmd.
+       * makeinfo/cmds.c (cm_sansserif): new cmd.
+       (command_table): add it.
+       * makeinfo/texinfo.dtd (Inline.fonts): add it; also slanted.
+       * makeinfo/xml.h (SANSSERIF, SLANTED): define these new elements.
+       * makeinfo/xml.c (texinfoml_element_list): add them.
+       From: Frank Küster, 21 Oct 2004 23:27:33 +0200, Debian bug#277754.
+ 
+       * doc/texinfo.txi (Quotations and Examples, end titlepage): state
+       that there must be only one space between the @end and its
+       argument.  Report from: christoph.sobotka, 26 Oct 2004 22:04:03 +0200.
+ 
  2004-11-22  Karl Berry  <address@hidden>
  
        * doc/texinfo.txi (euro): new node, documenting new command,
Index: NEWS
===================================================================
RCS file: /cvsroot/texinfo/texinfo/NEWS,v
retrieving revision 1.96
retrieving revision 1.97
diff -c -r1.96 -r1.97
*** NEWS        22 Nov 2004 23:57:32 -0000      1.96
--- NEWS        26 Nov 2004 00:48:35 -0000      1.97
***************
*** 1,4 ****
! $Id: NEWS,v 1.96 2004/11/22 23:57:32 karl Exp $
  This file records noteworthy changes.
  
    Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
--- 1,4 ----
! $Id: NEWS,v 1.97 2004/11/26 00:48:35 karl Exp $
  This file records noteworthy changes.
  
    Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
***************
*** 25,31 ****
    . new command @euro for the Euro currency symbol, and
      @documentencoding has some support for ISO-8859-15.
    . new command @abbr for general abbreviations.
!   . new command @slanted to typeset text with a slanted font.
  * texi2dvi:
    . calls recode if installed and @documentencoding is specified.
  * Distribution:
--- 25,32 ----
    . new command @euro for the Euro currency symbol, and
      @documentencoding has some support for ISO-8859-15.
    . new command @abbr for general abbreviations.
!   . new command @slanted to typeset text in a slanted font,
!     and @sansserif to typeset in a sans serif font.
  * texi2dvi:
    . calls recode if installed and @documentencoding is specified.
  * Distribution:
Index: doc/texinfo.tex
===================================================================
RCS file: /cvsroot/texinfo/texinfo/doc/texinfo.tex,v
retrieving revision 1.180
retrieving revision 1.181
diff -c -r1.180 -r1.181
*** doc/texinfo.tex     22 Nov 2004 23:57:32 -0000      1.180
--- doc/texinfo.tex     26 Nov 2004 00:48:35 -0000      1.181
***************
*** 3,9 ****
  % Load plain if necessary, i.e., if running under initex.
  \expandafter\ifx\csname fmtname\endcsname\relax\input plain\fi
  %
! \def\texinfoversion{2004-11-19.19}
  %
  % Copyright (C) 1985, 1986, 1988, 1990, 1991, 1992, 1993, 1994, 1995,
  % 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 Free Software
--- 3,9 ----
  % Load plain if necessary, i.e., if running under initex.
  \expandafter\ifx\csname fmtname\endcsname\relax\input plain\fi
  %
! \def\texinfoversion{2004-11-25.16}
  %
  % Copyright (C) 1985, 1986, 1988, 1990, 1991, 1992, 1993, 1994, 1995,
  % 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 Free Software
***************
*** 1730,1738 ****
--- 1730,1742 ----
  \let\dfn=\smartslanted
  \let\emph=\smartitalic
  
+ % @b, explicit bold.
  \def\b#1{{\bf #1}}
  \let\strong=\b
  
+ % @sansserif, explicit sans.
+ \def\sansserif#1{{\sf #1}}
+ 
  % We can't just use \exhyphenpenalty, because that only has effect at
  % the end of a paragraph.  Restore normal hyphenation at the end of the
  % group within which \nohyphenation is presumably called.
Index: doc/texinfo.txi
===================================================================
RCS file: /cvsroot/texinfo/texinfo/doc/texinfo.txi,v
retrieving revision 1.116
retrieving revision 1.117
diff -c -r1.116 -r1.117
*** doc/texinfo.txi     22 Nov 2004 23:57:32 -0000      1.116
--- doc/texinfo.txi     26 Nov 2004 00:39:40 -0000      1.117
***************
*** 1,5 ****
  \input texinfo.tex    @c -*-texinfo-*-
! @c $Id: texinfo.txi,v 1.116 2004/11/22 23:57:32 karl Exp $
  @c Ordinarily, Texinfo files have the extension .texi.  But texinfo.texi
  @c clashes with texinfo.tex on 8.3 filesystems, so we use texinfo.txi.
  
--- 1,5 ----
  \input texinfo.tex    @c -*-texinfo-*-
! @c $Id: texinfo.txi,v 1.117 2004/11/26 00:39:40 karl Exp $
  @c Ordinarily, Texinfo files have the extension .texi.  But texinfo.texi
  @c clashes with texinfo.tex on 8.3 filesystems, so we use texinfo.txi.
  
***************
*** 3467,3475 ****
  @cindex Titlepage end starts headings
  @cindex End titlepage starts headings
  
! The @code{@@end titlepage} command must be written on a line by itself.
! It not only marks the end of the title and copyright pages, but also
! causes @TeX{} to start generating page headings and page numbers.
  
  To repeat what is said elsewhere,  Texinfo has two standard page heading
  formats, one for documents which are printed on one side of each sheet of 
paper
--- 3467,3477 ----
  @cindex Titlepage end starts headings
  @cindex End titlepage starts headings
  
! Like all @code{@@end} commands (@pxref{Quotations and Examples}), the 
@code{@@end titlepage} command
! must be written at the beginning of a line by itself, with only one
! space between the @code{@@end} and the @code{titlepage}.  It not only
! marks the end of the title and copyright pages, but also causes @TeX{}
! to start generating page headings and page numbers.
  
  To repeat what is said elsewhere,  Texinfo has two standard page heading
  formats, one for documents which are printed on one side of each sheet of 
paper
***************
*** 7667,7709 ****
  @node Fonts
  @subsection Fonts for Printing, Not Info
  @cindex Fonts for printing, not Info
- @findex i @r{(italic font)}
- @findex b @r{(bold font)}
- @findex t @r{(typewriter font)}
- @findex r @r{(roman font)}
- @findex slanted @r{(slanted font)}
  
! Texinfo provides five font commands that specify font changes in the
! printed manual and (where possible) in the HTML output, but have no
! effect in the Info file.  All five commands apply to an argument that
! follows, surrounded by braces.
  
  @table @code
  @item @@i
  @cindex Italic font
  selects an @i{italic} font;
  
  @item @@slanted
  @cindex Slanted font
! selects a @slanted{slanted} font (this command name is longer than the
! other font-change commands because it was invented much later);
! 
! @item @@b
! @cindex Bold font
! selects @b{bold} face;
  
  @item @@t
  @cindex Monospace font
  @cindex Fixed-width font
  @cindex Typewriter font
  selects the @t{fixed-width}, typewriter-style font used by @code{@@code};
  
- @item @@r
- @cindex Roman font
- selects a @r{roman} font, which is the usual font in which text is printed.
- 
  @end table
  
  @cindex <lineannotation> Docbook tag
  Only the @code{@@r} command has much use: in example-like
  environments, you can use the @code{@@r} command to write comments in
--- 7669,7722 ----
  @node Fonts
  @subsection Fonts for Printing, Not Info
  @cindex Fonts for printing, not Info
  
! Texinfo provides a number of font commands that specify font changes
! in the printed manual and (where possible) in the HTML output, but
! have no effect in the Info file.  All the commands apply to an
! argument that follows, surrounded by braces.
  
  @table @code
+ @item @@b
+ @findex b @r{(bold font)}
+ @cindex Bold font
+ selects @b{bold} face;
+ 
  @item @@i
+ @findex i @r{(italic font)}
  @cindex Italic font
  selects an @i{italic} font;
  
+ @item @@r
+ @findex r @r{(roman font)}
+ @cindex Roman font
+ @cindex Default font
+ selects a @r{roman} font, which is the usual font in which text is
+ printed.  It may or may not be seriffed.
+ 
+ @item @@sansserif
+ @findex sansserif @r{(sans serif font)}
+ @cindex Sans serif font
+ selects a @sansserif{sans serif} font;
+ 
  @item @@slanted
+ @findex slanted @r{(slanted font)}
  @cindex Slanted font
! @cindex Oblique font
! rselects a @slanted{slanted} font;
  
  @item @@t
+ @findex t @r{(typewriter font)}
  @cindex Monospace font
  @cindex Fixed-width font
  @cindex Typewriter font
  selects the @t{fixed-width}, typewriter-style font used by @code{@@code};
  
  @end table
  
+ (The commands with longer names were invented much later than the
+ others, when it did not seem desirable to use very short names for
+ such an infrequently needed feature.)
+ 
  @cindex <lineannotation> Docbook tag
  Only the @code{@@r} command has much use: in example-like
  environments, you can use the @code{@@r} command to write comments in
***************
*** 7728,7736 ****
  (+ 2 2)    ; @r{Add two plus two.}
  @end lisp
  
! In general, you should avoid using the other three font commands.  If
! you need to use one, it probably indicates a gap in the Texinfo
! language.
  
  
  @node Quotations and Examples
--- 7741,7749 ----
  (+ 2 2)    ; @r{Add two plus two.}
  @end lisp
  
! In general, you should avoid using the other font commands.  Some of
! them are only useful when documenting functionality with specific font
! effects, such as in \TeX\ and related packages.
  
  
  @node Quotations and Examples
***************
*** 7738,7753 ****
  
  Quotations and examples are blocks of text consisting of one or more
  whole paragraphs that are set off from the bulk of the text and
! treated differently.  They are usually address@hidden
  
  In Texinfo, you always begin a quotation or example by writing an
  @@-command at the beginning of a line by itself, and end it by writing
  an @code{@@end} command that is also at the beginning of a line by
  itself.  For instance, you begin an example by writing @code{@@example}
  by itself at the beginning of a line and end the example by writing
  @code{@@end example} on a line by itself, at the beginning of that
! line.
! @findex end
  
  @menu
  * Block Enclosing Commands::    Different constructs for different purposes.
--- 7751,7767 ----
  
  Quotations and examples are blocks of text consisting of one or more
  whole paragraphs that are set off from the bulk of the text and
! treated differently.  They are usually indented in the output.
  
+ @findex end
  In Texinfo, you always begin a quotation or example by writing an
  @@-command at the beginning of a line by itself, and end it by writing
  an @code{@@end} command that is also at the beginning of a line by
  itself.  For instance, you begin an example by writing @code{@@example}
  by itself at the beginning of a line and end the example by writing
  @code{@@end example} on a line by itself, at the beginning of that
! line, and with only one space between the @code{@@end} and the
! @code{example}.
  
  @menu
  * Block Enclosing Commands::    Different constructs for different purposes.
***************
*** 10547,10555 ****
  @cindex Latin 9
  In order to get the Euro symbol in encoded Info output, for example,
  it is necessary to specify @code{@@documentencoding ISO-8859-15}.
! (@xref{documentencoding}.)  The Euro symbol is in ISO 8859-15 (aka
! address@hidden), and is @emph{not} in the more widely-used and supported
! ISO 8859-1 (address@hidden).
  
  
  @node pounds
--- 10561,10569 ----
  @cindex Latin 9
  In order to get the Euro symbol in encoded Info output, for example,
  it is necessary to specify @code{@@documentencoding ISO-8859-15}.
! (@xref{documentencoding,,@code{@@documentencoding}}.)  The Euro symbol
! is in ISO 8859-15 (aka address@hidden), and is @emph{not} in the more
! widely-used and supported ISO 8859-1 (address@hidden).
  
  
  @node pounds
***************
*** 17463,17477 ****
  Generate a ring accent over the next character, as in @ringaccent{o}.
  @xref{Inserting Accents}.
  
- @item @@address@hidden@address@hidden
- Print @var{text} in @slanted{slanted} font.  No effect in Info.
- @xref{Fonts}.
- 
  @item @@address@hidden@address@hidden
  Highlight @var{text} that is a literal example of a sequence of
  characters.  Used for single characters, for statements, and often for
  entire shell commands.  @xref{samp, , @code{@@address@hidden
  
  @item @@address@hidden@address@hidden
  Set @var{text} in a printed output in @sc{the small caps font} and
  set text in the Info file in uppercase letters.
--- 17477,17491 ----
  Generate a ring accent over the next character, as in @ringaccent{o}.
  @xref{Inserting Accents}.
  
  @item @@address@hidden@address@hidden
  Highlight @var{text} that is a literal example of a sequence of
  characters.  Used for single characters, for statements, and often for
  entire shell commands.  @xref{samp, , @code{@@address@hidden
  
+ @item @@sansserif@@address@hidden
+ Print @var{text} in a @sansserif{sans serif} font if possible.  No
+ effect in Info.  @xref{Fonts}.
+ 
  @item @@address@hidden@address@hidden
  Set @var{text} in a printed output in @sc{the small caps font} and
  set text in the Info file in uppercase letters.
***************
*** 17526,17531 ****
--- 17540,17549 ----
  @item @@shorttitlepage @var{title}
  Generate a minimal title page.  @xref{titlepage,,@code{@@titlepage}}.
  
+ @item @@address@hidden@address@hidden
+ Print @var{text} in a @slanted{slanted} font if possible.  No effect
+ in Info.  @xref{Fonts}.
+ 
  @item @@smallbook
  Cause @TeX{} to produce a printed manual in a 7 by 9.25 inch format
  rather than the regular 8.5 by 11 inch format.  @xref{smallbook, ,
***************
*** 18392,18398 ****
  Concurrent Versions System}) or RCS (see rcsintro(1)) version control
  systems, which expand it into a string such as:
  @example
! $Id: texinfo.txi,v 1.116 2004/11/22 23:57:32 karl Exp $
  @end example
  (This is useful in all sources that use version control, not just manuals.)
  You may wish to include the @samp{$Id:} comment in the @code{@@copying}
--- 18410,18416 ----
  Concurrent Versions System}) or RCS (see rcsintro(1)) version control
  systems, which expand it into a string such as:
  @example
! $Id: texinfo.txi,v 1.117 2004/11/26 00:39:40 karl Exp $
  @end example
  (This is useful in all sources that use version control, not just manuals.)
  You may wish to include the @samp{$Id:} comment in the @code{@@copying}
***************
*** 18458,18464 ****
  
  @verbatim
  \input texinfo   @c -*-texinfo-*-
! @comment $Id: texinfo.txi,v 1.116 2004/11/22 23:57:32 karl Exp $
  @comment %**start of header
  @setfilename sample.info
  @include version.texi
--- 18476,18482 ----
  
  @verbatim
  \input texinfo   @c -*-texinfo-*-
! @comment $Id: texinfo.txi,v 1.117 2004/11/26 00:39:40 karl Exp $
  @comment %**start of header
  @setfilename sample.info
  @include version.texi
Index: doc/version.texi
===================================================================
RCS file: /cvsroot/texinfo/texinfo/doc/version.texi,v
retrieving revision 1.21
retrieving revision 1.22
diff -c -r1.21 -r1.22
*** doc/version.texi    22 Nov 2004 23:57:33 -0000      1.21
--- doc/version.texi    26 Nov 2004 00:48:35 -0000      1.22
***************
*** 1,4 ****
! @set UPDATED 22 November 2004
  @set UPDATED-MONTH November 2004
  @set EDITION 4.7.90
  @set VERSION 4.7.90
--- 1,4 ----
! @set UPDATED 25 November 2004
  @set UPDATED-MONTH November 2004
  @set EDITION 4.7.90
  @set VERSION 4.7.90
Index: makeinfo/cmds.c
===================================================================
RCS file: /cvsroot/texinfo/texinfo/makeinfo/cmds.c,v
retrieving revision 1.53
retrieving revision 1.54
diff -c -r1.53 -r1.54
*** makeinfo/cmds.c     22 Nov 2004 23:57:33 -0000      1.53
--- makeinfo/cmds.c     26 Nov 2004 00:48:35 -0000      1.54
***************
*** 1,5 ****
  /* cmds.c -- Texinfo commands.
!    $Id: cmds.c,v 1.53 2004/11/22 23:57:33 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.54 2004/11/26 00:48:35 karl Exp $
  
     Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004 Free Software
     Foundation, Inc.
***************
*** 282,287 ****
--- 282,288 ----
    { "ringaccent", cm_accent, MAYBE_BRACE_ARGS },
    { "rmacro", cm_rmacro, NO_BRACE_ARGS },
    { "samp", cm_code, BRACE_ARGS },
+   { "sansserif", cm_sansserif, BRACE_ARGS },
    { "sc", cm_sc, BRACE_ARGS },
    { "section", cm_section, NO_BRACE_ARGS },
    { "set", cm_set, NO_BRACE_ARGS },
***************
*** 1164,1170 ****
    if (docbook && !filling_enabled && !printing_index)
      xml_insert_element (LINEANNOTATION, arg);
    else if (xml)
!     xml_insert_element (I, arg);
    else if (html)
      insert_html_tag (arg, "i");
    else
--- 1165,1171 ----
    if (docbook && !filling_enabled && !printing_index)
      xml_insert_element (LINEANNOTATION, arg);
    else if (xml)
!     xml_insert_element (SLANTED, arg);
    else if (html)
      insert_html_tag (arg, "i");
    else
***************
*** 1204,1209 ****
--- 1205,1225 ----
  }
  
  void
+ cm_sansserif (int arg)
+ {
+   /* See cm_i comments.  */
+   extern int printing_index;
+   if (docbook && !filling_enabled && !printing_index)
+     xml_insert_element (LINEANNOTATION, arg);
+   else if (xml)
+     xml_insert_element (SANSSERIF, arg);
+   else if (html)
+     insert_html_tag_with_attribute (arg, "span", "class=\"sansserif\"");
+   else
+     not_fixed_width (arg);
+ }
+ 
+ void
  cm_titlefont (int arg)
  {
    if (xml)
Index: makeinfo/cmds.h
===================================================================
RCS file: /cvsroot/texinfo/texinfo/makeinfo/cmds.h,v
retrieving revision 1.8
retrieving revision 1.9
diff -c -r1.8 -r1.9
*** makeinfo/cmds.h     31 Jul 2004 18:49:51 -0000      1.8
--- makeinfo/cmds.h     26 Nov 2004 00:48:35 -0000      1.9
***************
*** 1,5 ****
  /* cmds.h -- declarations for cmds.c.
!    $Id: cmds.h,v 1.8 2004/07/31 18:49:51 karl Exp $
  
     Copyright (C) 1998, 1999, 2002, 2003, 2004 Free Software Foundation,
     Inc.
--- 1,5 ----
  /* cmds.h -- declarations for cmds.c.
!    $Id: cmds.h,v 1.9 2004/11/26 00:48:35 karl Exp $
  
     Copyright (C) 1998, 1999, 2002, 2003, 2004 Free Software Foundation,
     Inc.
***************
*** 123,128 ****
--- 123,129 ----
    cm_math (int arg),
    cm_not_fixed_width (int arg, int start, int end),
    cm_r (int arg),
+   cm_sansserif (int arg),
    cm_sc (int arg, int start_pos, int end_pos),
    cm_slanted (int arg),
    cm_strong (int arg, int start_pos, int end_pos),
Index: makeinfo/html.c
===================================================================
RCS file: /cvsroot/texinfo/texinfo/makeinfo/html.c,v
retrieving revision 1.25
retrieving revision 1.26
diff -c -r1.25 -r1.26
*** makeinfo/html.c     19 Apr 2004 23:04:52 -0000      1.25
--- makeinfo/html.c     26 Nov 2004 00:48:35 -0000      1.26
***************
*** 1,5 ****
  /* html.c -- html-related utilities.
!    $Id: html.c,v 1.25 2004/04/19 23:04:52 karl Exp $
  
     Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004 Free Software
     Foundation, Inc.
--- 1,5 ----
  /* html.c -- html-related utilities.
!    $Id: html.c,v 1.26 2004/11/26 00:48:35 karl Exp $
  
     Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004 Free Software
     Foundation, Inc.
***************
*** 310,319 ****
  #define CSS_FONT_SMALL_CAPS "font-variant:small-caps"
      add_word_args ("  span.sc    { %s }\n", CSS_FONT_SMALL_CAPS);
  
!     /* Roman font class, closest we can come.  */
  #define CSS_FONT_ROMAN "font-family:serif; font-weight:normal;"
      add_word_args ("  span.roman { %s } \n", CSS_FONT_ROMAN);
  
      /* Write out any css code from the user's --css-file.  */
      if (css_inline)
        insert_string (css_inline);
--- 310,323 ----
  #define CSS_FONT_SMALL_CAPS "font-variant:small-caps"
      add_word_args ("  span.sc    { %s }\n", CSS_FONT_SMALL_CAPS);
  
!     /* Roman (default) font class, closest we can come.  */
  #define CSS_FONT_ROMAN "font-family:serif; font-weight:normal;"
      add_word_args ("  span.roman { %s } \n", CSS_FONT_ROMAN);
  
+     /* Sans serif font class.  */
+ #define CSS_FONT_SANSSERIF "font-family:sans-serif; font-weight:normal;"
+     add_word_args ("  span.sansserif { %s } \n", CSS_FONT_SANSSERIF);
+ 
      /* Write out any css code from the user's --css-file.  */
      if (css_inline)
        insert_string (css_inline);
Index: makeinfo/texinfo.dtd
===================================================================
RCS file: /cvsroot/texinfo/texinfo/makeinfo/texinfo.dtd,v
retrieving revision 1.10
retrieving revision 1.11
diff -c -r1.10 -r1.11
*** makeinfo/texinfo.dtd        11 Nov 2004 18:34:28 -0000      1.10
--- makeinfo/texinfo.dtd        26 Nov 2004 00:48:35 -0000      1.11
***************
*** 1,4 ****
! <!-- $Id: texinfo.dtd,v 1.10 2004/11/11 18:34:28 karl Exp $
     Document Type Definition for Texinfo.
  
     Author: Philippe Martin (address@hidden)
--- 1,4 ----
! <!-- $Id: texinfo.dtd,v 1.11 2004/11/26 00:48:35 karl Exp $
     Document Type Definition for Texinfo.
  
     Author: Philippe Martin (address@hidden)
***************
*** 100,106 ****
  <!-- ****** -->
  <!ENTITY % Inline.emphasize "strong | emph">
  <!ENTITY % Inline.smallcaps "sc">
! <!ENTITY % Inline.fonts "i | b | tt | r | titlefont">
  <!ENTITY % Inline.markup "code | command | env | file | option | samp | dfn | 
cite | key | kbd | var | acronym | url">
  <!ENTITY % Inline.reference "xref | inforef | indexterm | email | uref">
  
--- 100,106 ----
  <!-- ****** -->
  <!ENTITY % Inline.emphasize "strong | emph">
  <!ENTITY % Inline.smallcaps "sc">
! <!ENTITY % Inline.fonts "b | i | r | sansserif | slanted | titlefont | tt">
  <!ENTITY % Inline.markup "code | command | env | file | option | samp | dfn | 
cite | key | kbd | var | acronym | url">
  <!ENTITY % Inline.reference "xref | inforef | indexterm | email | uref">
  
Index: makeinfo/xml.c
===================================================================
RCS file: /cvsroot/texinfo/texinfo/makeinfo/xml.c,v
retrieving revision 1.50
retrieving revision 1.51
diff -c -r1.50 -r1.51
*** makeinfo/xml.c      11 Nov 2004 18:34:28 -0000      1.50
--- makeinfo/xml.c      26 Nov 2004 00:48:35 -0000      1.51
***************
*** 1,5 ****
  /* xml.c -- xml output.
!    $Id: xml.c,v 1.50 2004/11/11 18:34:28 karl Exp $
  
     Copyright (C) 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
  
--- 1,5 ----
  /* xml.c -- xml output.
!    $Id: xml.c,v 1.51 2004/11/26 00:48:35 karl Exp $
  
     Copyright (C) 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
  
***************
*** 116,121 ****
--- 116,123 ----
    { "i",                   0, 1, 0 },
    { "b",                   0, 1, 0 },
    { "r",                   0, 1, 0 },
+   { "slanted",             0, 1, 0 },
+   { "sansserif",           0, 1, 0 },
  
    { "exdent",              0, 0, 0 },
  
Index: makeinfo/xml.h
===================================================================
RCS file: /cvsroot/texinfo/texinfo/makeinfo/xml.h,v
retrieving revision 1.23
retrieving revision 1.24
diff -c -r1.23 -r1.24
*** makeinfo/xml.h      11 Nov 2004 18:34:28 -0000      1.23
--- makeinfo/xml.h      26 Nov 2004 00:48:35 -0000      1.24
***************
*** 1,5 ****
  /* xml.h -- xml output declarations.
!    $Id: xml.h,v 1.23 2004/11/11 18:34:28 karl Exp $
  
     Copyright (C) 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
  
--- 1,5 ----
  /* xml.h -- xml output declarations.
!    $Id: xml.h,v 1.24 2004/11/26 00:48:35 karl Exp $
  
     Copyright (C) 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
  
***************
*** 67,73 ****
    ACRONYM, ACRONYMWORD, ACRONYMDESC,
    ABBREV, ABBREVWORD, ABBREVDESC,
    TT, CODE, COMMAND_TAG, ENV, FILE_TAG, OPTION, SAMP, KBD, URL, KEY,
!   VAR, SC, DFN, EMPH, STRONG, CITE, NOTFIXEDWIDTH, I, B, R,
    EXDENT,
    TITLE, 
    IFINFO, 
--- 67,73 ----
    ACRONYM, ACRONYMWORD, ACRONYMDESC,
    ABBREV, ABBREVWORD, ABBREVDESC,
    TT, CODE, COMMAND_TAG, ENV, FILE_TAG, OPTION, SAMP, KBD, URL, KEY,
!   VAR, SC, DFN, EMPH, STRONG, CITE, NOTFIXEDWIDTH, I, B, R, SLANTED, 
SANSSERIF,
    EXDENT,
    TITLE, 
    IFINFO, 
P ChangeLog
P NEWS
P doc/texinfo.tex
P doc/texinfo.txi
P doc/version.texi
P makeinfo/cmds.c
P makeinfo/cmds.h
P makeinfo/html.c
P makeinfo/texinfo.dtd
P makeinfo/xml.c
P makeinfo/xml.h


reply via email to

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