automake-patches
[Top][All Lists]
Advanced

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

FYI: update aux files


From: Alexandre Duret-Lutz
Subject: FYI: update aux files
Date: Tue, 18 Nov 2003 21:43:18 +0100
User-agent: Gnus/5.1003 (Gnus v5.10.3) Emacs/21.3 (gnu/linux)

2003-11-18  Alexandre Duret-Lutz  <address@hidden>

        * config.sub, config.guess, texinfo.tex: New upstream versions.

Index: lib/config.guess
===================================================================
RCS file: /cvs/automake/automake/lib/config.guess,v
retrieving revision 1.36
diff -u -r1.36 config.guess
--- lib/config.guess    11 Nov 2003 21:08:15 -0000      1.36
+++ lib/config.guess    18 Nov 2003 20:42:29 -0000
@@ -1227,6 +1227,9 @@
     SEI:*:*:SEIUX)
         echo mips-sei-seiux${UNAME_RELEASE}
        exit 0 ;;
+    *:DRAGONFLY:*:*)
+       echo ${UNAME_MACHINE}-unknown-dragonfly${UNAME_RELEASE}
+       exit 0 ;;
 esac
 
 #echo '(No uname command or uname output not recognized.)' 1>&2
Index: lib/config.sub
===================================================================
RCS file: /cvs/automake/automake/lib/config.sub,v
retrieving revision 1.174
diff -u -r1.174 config.sub
--- lib/config.sub      11 Nov 2003 21:08:15 -0000      1.174
+++ lib/config.sub      18 Nov 2003 20:42:30 -0000
@@ -1152,7 +1152,7 @@
              | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \
              | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \
              | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \
-             | -powermax* | -dnix* | -nx6 | -nx7 | -sei*)
+             | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly*)
        # Remember, each alternative MUST END IN *, to match a version number.
                ;;
        -qnx*)
Index: lib/texinfo.tex
===================================================================
RCS file: /cvs/automake/automake/lib/texinfo.tex,v
retrieving revision 1.30
diff -u -r1.30 texinfo.tex
--- lib/texinfo.tex     11 Nov 2003 21:08:15 -0000      1.30
+++ lib/texinfo.tex     18 Nov 2003 20:42:35 -0000
@@ -3,7 +3,7 @@
 % Load plain if necessary, i.e., if running under initex.
 \expandafter\ifx\csname fmtname\endcsname\relax\input plain\fi
 %
-\def\texinfoversion{2003-10-29.10}
+\def\texinfoversion{2003-11-16.09}
 %
 % Copyright (C) 1985, 1986, 1988, 1990, 1991, 1992, 1993, 1994, 1995,
 % 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
@@ -2426,17 +2426,33 @@
   \go
 }
 
+% multitable-only commands.
address@hidden outside of @multitable}}
address@hidden outside of @multitable}}
+
 % @multitable ... @end multitable definitions:
 %
+\newtoks\everytab  % insert after every tab.
+%
 \def\multitable{\parsearg\dotable}
+%
 \def\dotable#1{\bgroup
   \vskip\parskip
-  \let\item=\crcrwithfootnotes
+  %
+  % @headitem starts a heading row, which we typeset in bold.
+  % Assignments have to be global since we are inside the implicit group
+  % of an alignment entry.
+  \def\headitem{\crcrwithfootnotes\global\everytab={\bf}\the\everytab}%
+  %
+  % @item within a multitable starts a normal row, get rid of any bold.
+  \def\item{\crcrwithfootnotes\global\everytab={}}%
+  %
   % A \tab used to include \hskip1sp.  But then the space in a template
   % line is not enough.  That is bad.  So let's go back to just & until
   % we encounter the problem it was intended to solve again.  --karl,
   % address@hidden, 20apr99.
-  \let\tab=&%
+  \def\tab{&\the\everytab}%
+  %
   \let\startfootins=\startsavedfootnote
   \tolerance=9500
   \hbadness=9500
@@ -2445,6 +2461,7 @@
   \parindent=\multitableparindent
   \overfullrule=0pt
   \global\colcount=0
+  %
   \def\Emultitable{%
     \global\setpercentfalse
     \crcrwithfootnotes\crcr
@@ -3141,20 +3158,20 @@
 \let\SETmarginindex=\relax % put index entries in margin (undocumented)?
 
 % Most index entries go through here, but \dosubind is the general case.
-%
+% #1 is the index name, #2 is the entry text.
 \def\doind#1#2{\dosubind{#1}{#2}{}}
 
 % Workhorse for all \fooindexes.
 % #1 is name of index, #2 is stuff to put there, #3 is subentry --
 % \empty if called from \doind, as we usually are.  The main exception
-% is with defuns, which call us directly.
+% is with some defuns, which call us directly.
 %
 \def\dosubind#1#2#3{%
   \iflinks
   {%
     % Store the main index entry text (including the third arg).
     \toks0 = {#2}%
-    % If third arg is present, precede it with space.
+    % If third arg is present, precede it with a space.
     \def\thirdarg{#3}%
     \ifx\thirdarg\empty \else
       \toks0 = \expandafter{\the\toks0 \space #3}%
@@ -3171,7 +3188,7 @@
   \fi
 }
 
-% Write the entry to the index file:
+% Write the entry in \toks0 to the index file:
 %
 \def\dosubindwrite{%
   % Put the index entry in the margin if desired.
@@ -4690,7 +4707,8 @@
 % @quotation does normal linebreaking (hence we can't use \nonfillstart)
 % and narrows the margins.
 %
-\def\quotation{%
+\def\quotation{\parsearg\doquotation}
+\def\doquotation#1{%
   \begingroup\inENV %This group ends at the end of the @quotation body
   {\parskip=0pt \aboveenvbreak}% because \aboveenvbreak inserts \parskip
   \parindent=0pt
@@ -4704,6 +4722,12 @@
     \advance\rightskip by \lispnarrowing
     \exdentamount = \lispnarrowing
     \let\nonarrowing = \relax
+  \fi
+  %
+  % If we're given an argument, typeset it in bold with a colon after.
+  \def\thearg{#1}%
+  \ifx\thearg\empty \else
+    {\bf \thearg:}
   \fi
 }
 

-- 
Alexandre Duret-Lutz





reply via email to

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