texinfo-commits
[Top][All Lists]
Advanced

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

texinfo update (Fri Jul 16 15:22:01 EDT 2004)


From: Karl Berry
Subject: texinfo update (Fri Jul 16 15:22:01 EDT 2004)
Date: Fri, 16 Jul 2004 15:22:20 -0400

Index: doc/texinfo.tex
===================================================================
RCS file: /cvsroot/texinfo/texinfo/doc/texinfo.tex,v
retrieving revision 1.163
retrieving revision 1.164
diff -c -r1.163 -r1.164
*** doc/texinfo.tex     16 Jul 2004 04:05:42 -0000      1.163
--- doc/texinfo.tex     16 Jul 2004 19:18:45 -0000      1.164
***************
*** 3,9 ****
  % Load plain if necessary, i.e., if running under initex.
  \expandafter\ifx\csname fmtname\endcsname\relax\input plain\fi
  %
! \def\texinfoversion{2004-07-15.22}
  %
  % 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-07-16.08}
  %
  % Copyright (C) 1985, 1986, 1988, 1990, 1991, 1992, 1993, 1994, 1995,
  % 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 Free Software
***************
*** 1715,1720 ****
--- 1715,1721 ----
  \def\cite#1{{\sl #1}\futurelet\next\smartitalicx}
  
  \let\i=\smartitalic
+ \let\s=\smartslanted
  \let\var=\smartslanted
  \let\dfn=\smartslanted
  \let\emph=\smartitalic
Index: doc/texinfo.txi
===================================================================
RCS file: /cvsroot/texinfo/texinfo/doc/texinfo.txi,v
retrieving revision 1.102
retrieving revision 1.103
diff -c -r1.102 -r1.103
*** doc/texinfo.txi     15 Jul 2004 11:14:39 -0000      1.102
--- doc/texinfo.txi     16 Jul 2004 19:14:43 -0000      1.103
***************
*** 1,5 ****
  \input texinfo.tex    @c -*-texinfo-*-
! @c $Id: texinfo.txi,v 1.102 2004/07/15 11:14:39 wl 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.103 2004/07/16 19:14:43 wl 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.
  
***************
*** 7595,7600 ****
--- 7595,7604 ----
  @cindex Italic font
  selects an @i{italic} font;
  
+ @item @@s
+ @cindex Slanted font
+ selects a @s{slanted} font;
+ 
  @item @@b
  @cindex Bold font
  selects @b{bold} face;
***************
*** 17280,17285 ****
--- 17284,17292 ----
  Generate a ring accent over the next character, as in @ringaccent{o}.
  @xref{Inserting Accents}.
  
+ @item @@address@hidden@address@hidden
+ Print @var{text} in @s{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
***************
*** 18205,18211 ****
  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.102 2004/07/15 11:14:39 wl 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}
--- 18212,18218 ----
  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.103 2004/07/16 19:14:43 wl 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}
***************
*** 18271,18277 ****
  
  @verbatim
  \input texinfo   @c -*-texinfo-*-
! @comment $Id: texinfo.txi,v 1.102 2004/07/15 11:14:39 wl Exp $
  @comment %**start of header
  @setfilename sample.info
  @include version.texi
--- 18278,18284 ----
  
  @verbatim
  \input texinfo   @c -*-texinfo-*-
! @comment $Id: texinfo.txi,v 1.103 2004/07/16 19:14:43 wl Exp $
  @comment %**start of header
  @setfilename sample.info
  @include version.texi
Index: makeinfo/cmds.c
===================================================================
RCS file: /cvsroot/texinfo/texinfo/makeinfo/cmds.c,v
retrieving revision 1.47
retrieving revision 1.48
diff -c -r1.47 -r1.48
*** makeinfo/cmds.c     26 Apr 2004 13:56:12 -0000      1.47
--- makeinfo/cmds.c     16 Jul 2004 19:20:43 -0000      1.48
***************
*** 1,5 ****
  /* cmds.c -- Texinfo commands.
!    $Id: cmds.c,v 1.47 2004/04/26 13:56:12 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.48 2004/07/16 19:20:43 wl Exp $
  
     Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004 Free Software
     Foundation, Inc.
***************
*** 280,285 ****
--- 280,286 ----
    { "ringaccent", cm_accent, MAYBE_BRACE_ARGS },
    { "rmacro", cm_rmacro, NO_BRACE_ARGS },
    { "samp", cm_code, BRACE_ARGS },
+   { "s", cm_s, BRACE_ARGS },
    { "sc", cm_sc, BRACE_ARGS },
    { "section", cm_section, NO_BRACE_ARGS },
    { "set", cm_set, NO_BRACE_ARGS },
***************
*** 1137,1142 ****
--- 1138,1159 ----
  }
  
  void
+ cm_s (int arg)
+ {
+   /* Make use of <lineannotation> of Docbook, if we are
+      inside an @example or similar.  */
+   extern int printing_index;
+   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
+     not_fixed_width (arg);
+ }
+ 
+ void
  cm_b (int arg)
  {
    /* See cm_i comments.  */
P doc/texinfo.tex
P doc/texinfo.txi
P makeinfo/cmds.c


reply via email to

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