summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/plain
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2014-11-13 23:48:37 +0000
committerKarl Berry <karl@freefriends.org>2014-11-13 23:48:37 +0000
commit880d29a873a0e51225c1b673382c23c39b07629f (patch)
tree3f2b81e93c052fba6e4c86f6cdacaf9a923da7ac /Master/texmf-dist/doc/plain
parent45a71fe6cd1a1a40ec5db29ad04dc081ec69b6b4 (diff)
impatient 2.4
git-svn-id: svn://tug.org/texlive/trunk@35573 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/plain')
-rw-r--r--Master/texmf-dist/doc/plain/impatient/Makefile.in118
-rw-r--r--Master/texmf-dist/doc/plain/impatient/NEWS21
-rw-r--r--Master/texmf-dist/doc/plain/impatient/README46
-rw-r--r--Master/texmf-dist/doc/plain/impatient/book.pdfbin1421239 -> 1345712 bytes
-rw-r--r--Master/texmf-dist/doc/plain/impatient/book.sdx1691
-rw-r--r--Master/texmf-dist/doc/plain/impatient/concepts.tex6
-rw-r--r--Master/texmf-dist/doc/plain/impatient/configure3172
-rw-r--r--Master/texmf-dist/doc/plain/impatient/configure.ac16
-rw-r--r--Master/texmf-dist/doc/plain/impatient/copyrght.tex4
-rw-r--r--Master/texmf-dist/doc/plain/impatient/fdl.tex127
-rw-r--r--Master/texmf-dist/doc/plain/impatient/math.tex42
-rw-r--r--Master/texmf-dist/doc/plain/impatient/paras.tex8
-rw-r--r--Master/texmf-dist/doc/plain/impatient/tips.tex4
-rw-r--r--Master/texmf-dist/doc/plain/impatient/usermacs.tex11
14 files changed, 5170 insertions, 96 deletions
diff --git a/Master/texmf-dist/doc/plain/impatient/Makefile.in b/Master/texmf-dist/doc/plain/impatient/Makefile.in
new file mode 100644
index 00000000000..53617389bab
--- /dev/null
+++ b/Master/texmf-dist/doc/plain/impatient/Makefile.in
@@ -0,0 +1,118 @@
+# $Id: Makefile.in,v 1.7 2014/11/13 17:12:55 karl Exp $
+# public domain
+# Makefile[.in] for TeX for the Impatient.
+
+PACKAGE_NAME = @PACKAGE_NAME@
+PACKAGE_TARNAME = @PACKAGE_TARNAME@
+PACKAGE_VERSION = @PACKAGE_VERSION@
+PACKAGE_STRING = @PACKAGE_STRING@
+PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
+PACKAGE_URL = @PACKAGE_URL@
+
+prefix = @prefix@
+datarootdir = @datarootdir@
+docdir = @docdir@
+pdfdir = @pdfdir@
+dvidir = @dvidir@
+htmldir = @htmldir@
+DESTDIR =
+
+SHELL = /bin/sh
+ICON = @ICON@
+TEX = @TEX@
+PDFTEX = @PDFTEX@
+HTTEX = @HTTEX@
+
+MKDIR_P = @MKDIR_P@
+INSTALL = @INSTALL@
+INSTALL_DATA = @INSTALL_DATA@
+
+TEXFILES = backm.tex book.tex capsule.tex concepts.tex config.tex \
+ copyrght.tex eplain.tex errors.tex examples.tex fdl.tex fonts.tex \
+ frontm.tex genops.tex index.tex macros.tex math.tex modes.tex \
+ pages.tex paras.tex preface.tex read1st.tex tips.tex usebook.tex \
+ usermacs.tex usingtex.tex xmptext.tex
+
+ICONSCRIPTS = index1.icn index2.icn
+
+SDXFILE = book.sdx
+
+AUXFILES = book.aux book.ccs book.idx book.toc
+
+LOGFILES = book.log
+
+PDFFILE = book.pdf
+
+DVIFILE = book.dvi
+
+HTMLFILE = book.html
+
+all: pdf #html dvi
+
+dvi: $(DVIFILE)
+
+pdf: $(PDFFILE)
+
+html: $(HTMLFILE)
+
+install: installdirs install-dvi install-pdf
+
+installdirs:
+ $(MKDIR_P) $(DESTDIR)$(dvidir)
+ $(MKDIR_P) $(DESTDIR)$(pdfdir)
+ $(MKDIR_P) $(DESTDIR)$(htmldir)
+
+install-dvi: dvi
+ $(INSTALL_DATA) book.dvi $(DESTDIR)$(dvidir)/teximpatient.dvi
+
+install-pdf: pdf
+ $(INSTALL_DATA) book.pdf $(DESTDIR)$(dvidir)/teximpatient.pdf
+
+install-html: html
+ $(INSTALL_DATA) book.html $(DESTDIR)$(dvidir)/teximpatient.html
+
+book.dvi: $(TEXFILES)
+ $(TEX) '\nonstopmode\input book'
+
+book.pdf: $(TEXFILES) $(SDXFILE)
+ $(PDFTEX) '\nonstopmode\input book'
+
+book.html: book.tex
+ $(HTTEX) book.tex "html"
+
+book.idx: book.dvi
+
+# + chars in book.idx need to be changed to SPC chars in book.sdx
+# somewhere, but currently aren't. Therefore, we effectively disable
+# the rule as long as book.sdx exists. This also avoids rerunning every
+# time (since book.idx changes every time; that file is written by TeX).
+# But the page numbers in the existing book.sdx are probably wrong by now :(.
+book.sdx: #book.idx $(ICONSCRIPTS)
+ if test -z "$(ICON)"; then touch book.sdx; else \
+ (cat book.idx | $(ICON) index1.icn | sort \
+ | $(ICON) index2.icn >book.sdx); fi
+
+dist: all
+ tar czf $(PACKAGE_TARNAME)-$(PACKAGE_VERSION).tar.gz \
+ Makefile.in configure configure.ac \
+ NEWS README errata.future \
+ $(ICONSCRIPTS) \
+ $(TEXFILES) \
+ $(SDXFILE) \
+ $(PDFFILE)
+
+dist-cn:
+ tar czf $(PACKAGE_TARNAME)-$(PACKAGE_VERSION)cn.tar.gz \
+ cn-git/Makefile cn-git/*.tex cn-git/cnbook.pdf
+
+distclean: clean
+ -rm -rf config.log config.status autom4te.cache Makefile
+
+clean:
+ -rm -f $(LOGFILES) $(AUXFILES) x.tex
+
+.PHONY: all dist clean pdf dvi html install installdirs \
+ install-dvi install-pdf install-html
+
+configure: configure.ac
+ autoconf
diff --git a/Master/texmf-dist/doc/plain/impatient/NEWS b/Master/texmf-dist/doc/plain/impatient/NEWS
new file mode 100644
index 00000000000..69931f5d070
--- /dev/null
+++ b/Master/texmf-dist/doc/plain/impatient/NEWS
@@ -0,0 +1,21 @@
+$Id: NEWS,v 1.3 2014/11/13 17:07:59 karl Exp $
+This NEWS file records noteworthy changes, very tersely.
+
+ Copyright 2013, 2014 Karl Berry.
+
+ Copying and distribution of this file, with or without modification,
+ are permitted in any medium without royalty provided the copyright
+ notice and this notice are preserved.
+
+
+ Version 2.4 (13 November 2014)
+- Chinese translation.
+- fixes from new Chinese translator, Zou Hu.
+
+ Version 2.3 (21 May 2013)
+- first release on ftp.gnu.org. Now looking for a maintainer.
+- update to GFDLv1.3.
+- simple configure script and Makefile added.
+- no changes to the text.
+- There is now a `NEWS' file (this one), giving a history of
+ user-visible changes.
diff --git a/Master/texmf-dist/doc/plain/impatient/README b/Master/texmf-dist/doc/plain/impatient/README
index ede492f3cd2..e4920fc0e74 100644
--- a/Master/texmf-dist/doc/plain/impatient/README
+++ b/Master/texmf-dist/doc/plain/impatient/README
@@ -1,36 +1,46 @@
-$Id: README,v 1.3 2011/01/27 22:16:24 karl Exp $
-This is the README file for version 1.0 of the free edition of the book
-TeX for the Impatient, released under the GNU Free Documentation License.
-(This README file itself is public domain.)
+$Id: README,v 1.5 2014/11/13 17:07:59 karl Exp $
+This is the README file for the GNU (free documentation) edition of the
+book TeX for the Impatient, released under the GNU Free Documentation
+License. (This README file itself is public domain.)
-Primary distribution is through CTAN:
- http://mirror.ctan.org/info/impatient/
+Primary distribution point: ftp://ftp.gnu.org/gnu/teximpatient/
+ automatic redirection: http://ftpmirror.gnu.org/teximpatient
+ list of mirrors for manual selection: http://www.gnu.org/prep/ftp.html
-TeX for the Impatient is also a GNU package, and the development sources,
-contact information, and other project details are available at
-http://www.gnu.org/software/teximpatient.
+Home page: http://www.gnu.org/software/teximpatient/
+
+Development sources, etc.: http://savannah.gnu.org/projects/teximpatient/
Information about the free edition is included at the end of the preface
and on the copyright page.
-We'd be interested in hearing about any projects undertaken with this
-material. See errata.future for some ideas.
+A French translation is included in the distribution,
+and a Chinese translation is at https://bitbucket.org/zohooo/impatient
+(with PDF at
+http://zoho.is-programmer.com/user_files/zoho/epics/tex-impatient-cn.pdf).
+Original high-resolution scans of the artwork are available from
+http://ftpmirror.gnu.org/teximpatient/artwork. Reduced-size bitmaps are
+in the artwork/ subdirectory here.
+
Some random thoughts for people thinking of working with the source:
-- You may want to translate the source into some more standard format; we
-used many homegrown macros to make typing and markup easier.
+- See errata.future for some relatively small ideas for enhancements.
+
+- You may want to translate the source into some more standard
+format, such as Texinfo; we used many homegrown macros mostly to make
+typing and markup easier.
- You may also want to redo the index creation to use makeindex or some
-other standard program, instead of our homegrown Icon programs (included
-in the distribution, for what it's worth). Until the index can be
-easily regenerated, the page breaks can't change without the index
-becoming useless.
+other standard program, instead of the homegrown Icon programs (or else
+they need to be fixed; right now somehow the + characters used for
+spaces in book.idx are preserved in book.sdx, which is wrong). Until
+the index can be easily regenerated, the page breaks can't change
+without the index becoming useless.
- Printing the GFDL required many kludges, a true Eplain-compatible
version is needed (which in turn would require using the current eplain
to print the book).
-
Happy TeXing.
diff --git a/Master/texmf-dist/doc/plain/impatient/book.pdf b/Master/texmf-dist/doc/plain/impatient/book.pdf
index 988068a123e..7cfbc01f56c 100644
--- a/Master/texmf-dist/doc/plain/impatient/book.pdf
+++ b/Master/texmf-dist/doc/plain/impatient/book.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/plain/impatient/book.sdx b/Master/texmf-dist/doc/plain/impatient/book.sdx
new file mode 100644
index 00000000000..c78157987a5
--- /dev/null
+++ b/Master/texmf-dist/doc/plain/impatient/book.sdx
@@ -0,0 +1,1691 @@
+\indexgroup +
+\indexentry {0}{\visiblespace}{T}{\ic \pp{3}\c 53}
+\indexentry {0}{\visiblespace}{C}{\ic 104\c 105\c 313}
+\indexentry {0}{\char `\!}{T}{\ic 13}
+\indexentry {0}{\char `\!}{C}{\ic \pp{214}\c 313}
+\indexentry {0}{\char `\"}{C}{\ic \pp{100}\c 313}
+\indexentry {0}{\char `\#}{T}{\ic 26\c \pp{45}\c \pp{75}\c 314}
+\indexentry {1}{category code of}{N}{\ic 53}
+\indexentry {1}{in ordinary text}{N}{\ic 15}
+\indexentry {0}{\char `\#}{C}{\ic 15\c \pp{98}\c 314}
+\indexentry {0}{\char `\$}{T}{\ic 16\c 26\c 93\c 314}
+\indexentry {1}{category code of}{N}{\ic 53}
+\indexentry {1}{in ordinary text}{N}{\ic 15}
+\indexentry {0}{\char `\$}{C}{\ic 15\c \pp{98}\c 314}
+\indexentry {0}{\$\$}{T}{\ic 16\c 61}
+\indexentry {0}{\char `\%}{T}{\ic 13\c 26\c 314}
+\indexentry {1}{category code of}{N}{\ic 53}
+\indexentry {1}{in ordinary text}{N}{\ic 15}
+\indexentry {1}{to eliminate unwanted spaces}{N}{\ic 270}
+\indexentry {1}{writing out}{N}{\ic 292}
+\indexentry {0}{\char `\%}{C}{\ic 15\c \pp{98}\c 314}
+\indexentry {0}{\char `\&}{T}{\ic 26\c 44\c 45\c 314}
+\indexentry {1}{category code of}{N}{\ic 53}
+\indexentry {1}{in ordinary text}{N}{\ic 15}
+\indexentry {0}{\char `\&}{C}{\ic 15\c \pp{98}\c 314}
+\indexentry {0}{\char `\'}{T}{\ic \pp{188}\c 314}
+\indexentry {0}{\char `\'}{C}{\ic \pp{100}\c 314}
+\indexentry {0}{\char `\)}{T}{\ic 59}
+\indexentry {0}{\char `\*}{C}{\ic \pp{190}\c 314}
+\indexentry {0}{\char `\+}{C}{\ic 44--45\c \pp{176}\c 314}
+\indexentry {0}{\char `\,}{C}{\ic \pp{214}\c 314}
+\indexentry {0}{\char `\-}{T}{\ic 14}
+\indexentry {1}{leads to {\tt\\hyphenpenalty}}{N}{\ic 125}
+\indexentry {0}{\char `\-}{C}{\ic 70\c \pp{126}\c 314}
+\indexentry {1}{in line breaking}{N}{\ic 74\c 268}
+\indexentry {0}{--}{T}{\ic 14}
+\indexentry {0}{---}{T}{\ic 14}
+\indexentry {0}{\char `\.}{T}{\ic 13}
+\indexentry {0}{\char `\.}{C}{\ic \pp{100}\c 314}
+\indexentry {0}{\char `\/}{T}{\ic 59}
+\indexentry {0}{\char `\/}{C}{\ic \pp{106}\c 314}
+\indexentry {0}{\char `\;}{C}{\ic \pp{214}\c 314}
+\indexentry {0}{\char `\=}{T}{\ic 191}
+\indexentry {0}{\char `\=}{C}{\ic \pp{100}\c 314}
+\indexentry {0}{\char `\>}{C}{\ic \pp{214}\c 314}
+\indexentry {0}{\char `\?}{T}{\ic 13}
+\indexentry {0}{\char `\[}{T}{\ic 59}
+\indexentry {0}{\char `\\}{T}{\ic 26\c 57\c 61\c 314}
+\indexentry {1}{category code of}{N}{\ic 53}
+\indexentry {1}{in ordinary text}{N}{\ic 15}
+\indexentry {0}{\char `\]}{T}{\ic 59}
+\indexentry {0}{\char `\^}{T}{\ic 26\c \pp{197}\c 314}
+\indexentry {1}{category code of}{N}{\ic 53}
+\indexentry {1}{in ordinary text}{N}{\ic 15}
+\indexentry {0}{\char `\^}{C}{\ic \pp{100}\c 314}
+\indexentry {0}{\twocarets ?}{T}{\ic 53}
+\indexentry {0}{\twocarets @}{T}{\ic 53}
+\indexentry {0}{\twocarets A}{T}{\ic 53\c 54}
+\indexentry {0}{\twocarets I}{T}{\ic 53\c 55}
+\indexentry {0}{\twocarets J}{T}{\ic 55}
+\indexentry {0}{\twocarets K}{T}{\ic 53\c 54}
+\indexentry {0}{\twocarets L}{T}{\ic 53\c 292\c 314}
+\indexentry {0}{\twocarets M}{T}{\ic 55\c \pp{105}\c 291\c 314}
+\indexentry {1}{category code of}{N}{\ic 53}
+\indexentry {0}{\char `\_}{T}{\ic 26\c \pp{197}\c 314}
+\indexentry {1}{category code of}{N}{\ic 53}
+\indexentry {1}{in ordinary text}{N}{\ic 15}
+\indexentry {0}{\char `\_}{C}{\ic 15\c \pp{98}\c 314}
+\indexentry {0}{\char `\`}{C}{\ic \pp{100}\c 314}
+\indexentry {0}{\char `\{}{T}{\ic 26\c \pp{227}\c 314}
+\indexentry {1}{category code of}{N}{\ic 53}
+\indexentry {1}{in ordinary text}{N}{\ic 15}
+\indexentry {1}{starting a group}{N}{\ic 15\c 68}
+\indexentry {1}{with {\tt\\expandafter}}{N}{\ic 233}
+\indexentry {0}{\char `\{}{C}{\ic 59\c \pp{191}\c 314}
+\indexentry {0}{\char `\|}{T}{\ic 189}
+\indexentry {0}{\char `\|}{C}{\ic \pp{188}\c 314}
+\indexentry {0}{\char `\}}{T}{\ic 26\c \pp{227}\c 314}
+\indexentry {1}{category code of}{N}{\ic 53}
+\indexentry {1}{ending a group}{N}{\ic 15\c 68}
+\indexentry {1}{in ordinary text}{N}{\ic 15}
+\indexentry {0}{\char `\}}{C}{\ic 59\c \pp{191}\c 314}
+\indexentry {0}{\char `\~}{T}{\ic 13\c 26\c 53\c \pp{105}\c 268\c 314}
+\indexentry {1}{in line breaking}{N}{\ic 74}
+\indexentry {1}{in ordinary text}{N}{\ic 15}
+\indexentry {0}{\char `\~}{C}{\ic \pp{100}\c 314}
+\indexgroup A
+\secondprinting{\vskip\baselineskip}
+\indexentry {0}{aa}{C}{\ic \pp{97}\c 314}
+\indexentry {0}{AA}{C}{\ic \pp{97}\c 314}
+\indexentry {0}{above}{C}{\ic \pp{200}\c 314}
+\indexentry {0}{abovecolumnspenalty}{C}{\ic \pp{308}}
+\indexentry {0}{abovedisplayshortskip}{C}{\ic \pp{217}\c 271\c 314}
+\indexentry {0}{abovedisplayskip}{C}{\ic \pp{217}\c 271\c 315}
+\indexentry {0}{abovewithdelims}{T}{\ic 58}
+\indexentry {0}{abovewithdelims}{C}{\ic \pp{201}\c 315}
+\indexentry {0}{accent}{C}{\ic \pp{100}\c 315}
+\indexentry {0}{accents}{N}{\ic 26\c 100\c 199}
+\indexentry {1}{aligning}{N}{\ic 212--213}
+\indexentry {0}{active}{C}{\ic 43\c \pp{251}\c 315}
+\indexentry {0}{active characters}{N}{\ic \pp{43--44}\c 53\c 54}
+\indexentry {0}{acute}{C}{\ic \pp{199}\c 315}
+\indexentry {0}{acute accent}{N}{\ic 100\c 199}
+\indexentry {0}{adjdemerits}{C}{\ic \pp{125}\c 315}
+\indexentry {0}{advance}{C}{\ic \pp{245}\c 315}
+\indexentry {0}{advancepageno}{C}{\ic \pp{142}\c 315}
+\indexentry {0}{ae}{C}{\ic \pp{97}\c 315}
+\indexentry {0}{AE}{C}{\ic \pp{97}\c 315}
+\indexentry {0}{afterassignment}{C}{\ic \pp{229}\c 315}
+\indexentry {0}{aftergroup}{C}{\ic \pp{229}\c 307\c 315}
+\indexentry {0}{aleph}{C}{\ic \pp{188}\c 315}
+\indexentry {0}{alignments}{N}{\ic \pp{44--46}}
+\indexentry {1}{commands for}{N}{\ic 176--185}
+\indexentry {1}{outer control sequence in}{N}{\ic 279}
+\indexentry {1}{space between rows of}{N}{\ic 135}
+\indexentry {1}{tab character for}{N}{\ic 53}
+\indexentry {1}{using \b\tt\\offinterlineskip\e\ in}{N}{\ic 135}
+\indexentry {0}{allowbreak}{C}{\ic \pp{121}\c \pp{136}\c 315}
+\indexentry {0}{alpha}{C}{\ic \pp{187}\c 315}
+\indexentry {0}{amalg}{C}{\ic \pp{189}\c 315}
+\indexentry {0}{\AMSTeX}{N}{\ic \r8\c 18}
+\indexentry {0}{AMSTeX}{C}{\ic \pp{294}}
+\indexentry {0}{\anatomy}{N}{\ic 16\c \pp{46--47}}
+\indexentry {0}{angle}{C}{\ic \pp{188}\c 315}
+\indexentry {0}{approx}{C}{\ic \pp{190}\c 191\c 315}
+\indexentry {0}{arccos}{C}{\ic \pp{193}\c 315}
+\indexentry {0}{arcsin}{C}{\ic \pp{193}\c 315}
+\indexentry {0}{arctan}{C}{\ic \pp{193}\c 315}
+\indexentry {0}{arg}{C}{\ic \pp{193}\c 315}
+\indexentry {0}{\<argument>}{N}{\ic 4}
+\indexentry {0}{arguments}{N}{\ic 4\c 11\c \pp{48--49}}
+\indexentry {0}{arithmetic}{N}{\ic 245--246}
+\indexentry {0}{arrows}{N}{\ic 175\c 192--193\c 202}
+\indexentry {0}{arrowvert}{C}{\ic \pp{212}\c 315}
+\indexentry {0}{Arrowvert}{C}{\ic \pp{212}\c 315}
+\indexentry {0}{\ascii}{N}{\ic \pp{49} \c 53\c 55\c 64}
+\indexentry {0}{assignments}{N}{\ic \pp{49--50}\c 87}
+\indexentry {1}{of boxes}{N}{\ic 164}
+\indexentry {1}{of registers}{N}{\ic 242}
+\indexentry {0}{ast}{C}{\ic \pp{189}\c 315}
+\indexentry {0}{asymp}{C}{\ic \pp{190}\c 191\c 315}
+\indexentry {0}{atop}{C}{\ic \pp{200}\c 315}
+\indexentry {0}{atopwithdelims}{C}{\ic 58\c \pp{201}\c 315}
+\indexentry {0}{auxiliary files}{N}{\ic 226}
+\indexentry {0}{axis}{N}{\ic 213}
+\indexgroup B
+\indexentry {0}{\char `\b}{C}{\ic \pp{199}\c 315}
+\indexentry {0}{backslash}{N}{\ic 227}
+\indexentry {0}{backslash}{C}{\ic 59\c \pp{188}\c 315}
+\indexentry {0}{badness}{N}{\ic \pp{50}\c 60}
+\indexentry {0}{badness}{C}{\ic 18\c \pp{170}\c 315}
+\indexentry {0}{bar}{C}{\ic \pp{199}\c 316}
+\indexentry {0}{bar accent}{N}{\ic 199}
+\indexentry {0}{bar-under accent}{N}{\ic 199}
+\indexentry {0}{baselines}{N}{\ic 28\c \pp{51}\c 88}
+\indexentry {0}{baselineskip}{C}{\ic 70\c \pp{133--134}\c 135\c 316}
+\indexentry {1}{and {\tt\\smallskipamount}, etc.}{N}{\ic 155}
+\indexentry {1}{and preserving end of page}{N}{\ic 267}
+\indexentry {0}{batchmode}{C}{\ic \pp{253}\c 316}
+\indexentry {0}{begingroup}{C}{\ic \pp{227}\c 316}
+\indexentry {0}{beginsection}{C}{\ic \pp{129}\c 316}
+\indexentry {0}{belowdisplayshortskip}{C}{\ic \pp{217}\c 316}
+\indexentry {0}{belowdisplayskip}{C}{\ic \pp{217}\c 316}
+\indexentry {0}{beta}{N}{\ic 188}
+\indexentry {0}{beta}{C}{\ic \pp{187}\c 316}
+\indexentry {0}{bf}{C}{\ic \pp{103}\c 316}
+\indexentry {0}{bffam}{C}{\ic \pp{210}\c 316}
+\indexentry {0}{bgroup}{C}{\ic \pp{227}\c 316}
+\indexentry {0}{bibliographies}{N}{\ic 14}
+\indexentry {0}{\BibTeX}{N}{\ic 19}
+\indexentry {0}{BibTeX}{C}{\ic \pp{294}}
+\indexentry {0}{big}{C}{\ic \pp{211}\c 316}
+\indexentry {0}{Big}{C}{\ic \pp{211}\c 316}
+\indexentry {0}{bigbreak}{C}{\ic \pp{137}\c 316}
+\indexentry {0}{bigcap}{C}{\ic \pp{194}\c 316}
+\indexentry {0}{bigcirc}{C}{\ic \pp{189}\c 316}
+\indexentry {0}{bigcup}{C}{\ic \pp{194}\c 316}
+\indexentry {0}{bigg}{C}{\ic \pp{211}\c 316}
+\indexentry {0}{Bigg}{C}{\ic \pp{211}\c 316}
+\indexentry {0}{biggl}{C}{\ic \pp{211}\c 316}
+\indexentry {0}{Biggl}{C}{\ic \pp{211}\c 316}
+\indexentry {0}{biggm}{C}{\ic \pp{211}\c 316}
+\indexentry {0}{Biggm}{C}{\ic \pp{211}\c 316}
+\indexentry {0}{biggr}{C}{\ic \pp{211}\c 316}
+\indexentry {0}{Biggr}{C}{\ic \pp{211}\c 316}
+\indexentry {0}{bigl}{C}{\ic 58\c \pp{211}\c 316}
+\indexentry {0}{Bigl}{C}{\ic \pp{211}\c 316}
+\indexentry {0}{bigm}{C}{\ic 189\c \pp{211}\c 316}
+\indexentry {0}{Bigm}{C}{\ic \pp{211}\c 316}
+\indexentry {0}{bigodot}{C}{\ic \pp{194}\c 316}
+\indexentry {0}{bigoplus}{C}{\ic \pp{194}\c 316}
+\indexentry {0}{bigotimes}{C}{\ic \pp{194}\c 316}
+\indexentry {0}{bigr}{C}{\ic 58\c \pp{211}\c 316}
+\indexentry {0}{Bigr}{C}{\ic \pp{211}\c 316}
+\indexentry {0}{bigskip}{C}{\ic 137\c \pp{154}\c 317}
+\indexentry {0}{bigskipamount}{C}{\ic \pp{155}\c 317}
+\indexentry {0}{bigsqcup}{C}{\ic \pp{194}\c 317}
+\indexentry {0}{bigtriangledown}{C}{\ic \pp{189}\c 317}
+\indexentry {0}{bigtriangleup}{C}{\ic \pp{189}\c 317}
+\indexentry {0}{biguplus}{C}{\ic \pp{194}\c 317}
+\indexentry {0}{bigvee}{C}{\ic \pp{194}\c 317}
+\indexentry {0}{bigwedge}{C}{\ic \pp{194}\c 317}
+\indexentry {0}{binoppenalty}{C}{\ic \pp{126}\c 317}
+\indexentry {0}{blackbox}{C}{\ic \pp{294}}
+\indexentry {0}{bmod}{C}{\ic \pp{193}\c 317}
+\indexentry {0}{bordermatrix}{C}{\ic \pp{205}\c 317}
+\indexentry {0}{bot}{C}{\ic \pp{188}\c 317}
+\indexentry {0}{botmark}{C}{\ic 79\c 80\c \pp{144}\c 317}
+\indexentry {0}{bottom margin}{N}{\ic 66}
+\indexentry {0}{bowtie}{C}{\ic \pp{190}\c 317}
+\indexentry {0}{box}{C}{\ic \pp{164}\c 165\c 317}
+\indexentry {0}{box commands}{N}{\ic 160--171}
+\indexentry {0}{box registers}{N}{\ic 52\c 89\c 164--166\c 167}
+\indexentry {1}{reserved by \b\tt\\newbox\e}{N}{\ic 244}
+\indexentry {0}{boxes}{N}{\ic 17\c \pp{51--53}}
+\indexentry {1}{baselines of}{N}{\ic 51}
+\indexentry {1}{copying}{N}{\ic 164\c 165}
+\indexentry {1}{depth of}{N}{\ic 60}
+\indexentry {1}{drawing}{N}{\ic 30}
+\indexentry {1}{empty}{N}{\ic 169}
+\indexentry {1}{extracting contents of}{N}{\ic 165}
+\indexentry {1}{glue with}{N}{\ic 66}
+\indexentry {1}{height of}{N}{\ic 69}
+\indexentry {1}{invisible}{N}{\ic 92}
+\indexentry {1}{last box in a list}{N}{\ic 171}
+\indexentry {1}{overfull}{N}{\ic 170--171\c 268--270}
+\indexentry {1}{phantom}{N}{\ic 168--169}
+\indexentry {1}{reference point of}{N}{\ic 88}
+\indexentry {1}{shifting}{N}{\ic 166--167}
+\indexentry {1}{testing if void}{N}{\ic 238}
+\indexentry {1}{underfull}{N}{\ic 170--171\c 268--270}
+\indexentry {1}{width of}{N}{\ic 95}
+\indexentry {0}{boxmaxdepth}{C}{\ic 52\c 162\c \pp{163}\c 317}
+\indexentry {0}{box255}{C}{\ic 84\c 90\c 144\c 148}
+\indexentry {0}{brace}{C}{\ic \pp{200}\c 317}
+\indexentry {0}{braces}{N}{\ic 202\c 211}
+\indexentry {1}{mismatched}{N}{\ic 275}
+\indexentry {1}{space after}{N}{\ic 270}
+\indexentry {0}{bracevert}{C}{\ic \pp{212}\c 317}
+\indexentry {0}{brack}{C}{\ic \pp{200}\c 317}
+\indexentry {0}{break}{C}{\ic 74\c \pp{120}\c \pp{136}\c 317}
+\indexentry {1}{correcting line breaks with}{N}{\ic 268}
+\indexentry {1}{end of line as}{N}{\ic 278}
+\indexentry {0}{breve}{C}{\ic \pp{199}\c 317}
+\indexentry {0}{breve accent}{N}{\ic 100\c 199}
+\indexentry {0}{brokenpenalty}{C}{\ic \pp{139}\c 317}
+\indexentry {0}{buildrel}{C}{\ic \pp{202}\c 317}
+\indexentry {0}{bullet}{C}{\ic \pp{189}\c 317}
+\indexentry {0}{bye}{C}{\ic \pp{246}\c 317}
+\indexgroup C
+\indexentry {0}{\char `\c}{C}{\ic \pp{100}\c 317}
+\indexentry {0}{cal}{C}{\ic \pp{209}\c 317}
+\indexentry {0}{cap}{C}{\ic \pp{189}\c 317}
+\indexentry {0}{card suits}{N}{\ic 26\c 188}
+\indexentry {0}{case conversion}{N}{\ic 103--104}
+\indexentry {0}{case testing}{N}{\ic 239}
+\indexentry {0}{cases}{C}{\ic \pp{201}\c 317}
+\indexentry {0}{catcode}{C}{\ic 43\c 53\c 61\c \pp{251}\c 317}
+\indexentry {0}{category codes}{N}{\ic \pp{53--55}}
+\indexentry {1}{attached during input}{N}{\ic 55}
+\indexentry {1}{cause of unwanted spaces}{N}{\ic 270}
+\indexentry {1}{changing}{N}{\ic 280}
+\indexentry {1}{for verbatim text}{N}{\ic 277}
+\indexentry {1}{in \b\tt\\catcode\e\ table}{N}{\ic 251}
+\indexentry {1}{of active characters}{N}{\ic 43}
+\indexentry {1}{testing}{N}{\ic 235}
+\indexentry {1}{useful definitions for}{N}{\ic 291}
+\indexentry {0}{cdot}{C}{\ic \pp{189}\c 196\c 317}
+\indexentry {0}{cdotp}{C}{\ic \pp{196}\c 317}
+\indexentry {0}{cdots}{C}{\ic \pp{203}\c 317}
+\indexentry {0}{cedilla accent}{N}{\ic 100}
+\indexentry {0}{center}{C}{\ic \pp{306}}
+\indexentry {0}{centered text}{N}{\ic 68\c 71\c 306--307}
+\indexentry {0}{centereddisplays}{C}{\ic \pp{295}}
+\indexentry {0}{centering}{N}{\ic 32\c 108--109}
+\indexentry {0}{centerline}{C}{\ic 68\c \pp{108}\c 317}
+\indexentry {0}{centimeter}{N}{\ic 60}
+\indexentry {0}{char}{C}{\ic 53\c 56\c \pp{99}\c 318}
+\indexentry {0}{character tokens}{N}{\ic 292}
+\indexentry {0}{characters}{N}{\ic 49\c \pp{55--56}\c 99}
+\indexentry {1}{\ascii\ codes for}{N}{\ic 82}
+\indexentry {1}{category code of}{N}{\ic 53}
+\indexentry {1}{defined by \b\tt\\chardef\e}{N}{\ic 232}
+\indexentry {1}{special}{N}{\ic 26}
+\indexentry {0}{\<charcode>}{N}{\ic 4}
+\indexentry {0}{chardef}{C}{\ic \pp{232}\c 234\c 318}
+\indexentry {0}{check}{C}{\ic \pp{199}\c 318}
+\indexentry {0}{check accent}{N}{\ic 100\c 199}
+\indexentry {0}{chi}{C}{\ic \pp{187}\c 318}
+\indexentry {0}{choose}{C}{\ic \pp{200}\c 318}
+\indexentry {0}{cicero}{N}{\ic 60}
+\indexentry {0}{circ}{C}{\ic \pp{189}\c 318}
+\indexentry {0}{circumflex accent}{N}{\ic 100}
+\indexentry {0}{class}{N}{\ic \pp{56}\c 210\c 218}
+\indexentry {1}{of a delimiter}{N}{\ic 59}
+\indexentry {0}{cleaders}{C}{\ic 72--73\c \pp{174}\c 318}
+\indexentry {0}{cleartabs}{C}{\ic \pp{177}\c 318}
+\indexentry {0}{closein}{C}{\ic 63\c \pp{248}\c 318}
+\indexentry {0}{closeout}{C}{\ic 63\c \pp{249}\c 318}
+\indexentry {1}{whatsit produced by}{N}{\ic 95}
+\indexentry {1}{with {\tt\\immediate}}{N}{\ic 250}
+\indexentry {0}{closing}{N}{\ic 191}
+\indexentry {0}{club line}{N}{\ic 138}
+\indexentry {0}{clubpenalty}{C}{\ic \pp{138}\c 318}
+\indexentry {0}{clubsuit}{C}{\ic \pp{188}\c 318}
+\indexentry {0}{cmex10}{T}{\ic 212}
+\indexentry {0}{cmtt10}{T}{\ic 109}
+\indexentry {0}{colon}{C}{\ic \pp{196}\c 318}
+\indexentry {0}{combinations, notation for}{N}{\ic 201}
+\indexentry {0}{commands}{N}{\ic 3\c 10--11\c \pp{56}}
+\indexentry {1}{arguments of}{N}{\ic 48}
+\indexentry {1}{versus control sequences}{N}{\ic 11}
+\indexentry {0}{comments}{N}{\ic \pp{13}\c 22\c 53}
+\indexentry {0}{Computer Modern fonts}{N}{\ic 34\c 49\c 64\c 109}
+\indexentry {0}{computer programs, typesetting}{N}{\ic 122\c 277\c 280}
+\indexentry {0}{conditional tests}{N}{\ic \pp{57}\c 235--240}
+\indexentry {0}{cong}{C}{\ic \pp{190}\c 191\c 318}
+\indexentry {0}{control characters}{N}{\ic 7\c 49\c 55}
+\indexentry {0}{control sequences}{N}{\ic 10--11\c \pp{57}}
+\indexentry {1}{absorbing spaces}{N}{\ic 10}
+\indexentry {1}{as tokens}{N}{\ic 16}
+\indexentry {1}{converting to strings}{N}{\ic 226}
+\indexentry {1}{defining with \b\tt\\let\e}{N}{\ic 232}
+\indexentry {1}{versus commands}{N}{\ic 11}
+\indexentry {0}{control space}{N}{\ic 10\c 104\c 270}
+\indexentry {0}{control symbols}{N}{\ic 10\c 57\c \pp{58}}
+\indexentry {0}{control words}{N}{\ic 10\c 57\c \pp{58}}
+\indexentry {0}{controlling \TeX}{N}{\ic 252--253}
+\indexentry {0}{coprod}{C}{\ic \pp{194}\c 318}
+\indexentry {0}{copy}{C}{\ic \pp{164}\c 318}
+\indexentry {0}{copyright}{C}{\ic \pp{98}\c 318}
+\indexentry {0}{cos}{C}{\ic \pp{193}\c 318}
+\indexentry {0}{cosh}{C}{\ic \pp{193}\c 318}
+\indexentry {0}{cot}{C}{\ic \pp{193}\c 318}
+\indexentry {0}{coth}{C}{\ic \pp{193}\c 318}
+\indexentry {0}{count}{C}{\ic 48\c \pp{242}\c 246\c 318}
+\indexentry {0}{count registers}{N}{\ic 89\c 242}
+\indexentry {1}{reserved by \b\tt\\newcount\e}{N}{\ic 244}
+\indexentry {0}{countdef}{C}{\ic \pp{245}\c 318}
+\indexentry {0}{count0}{C}{\ic 142}
+\indexentry {0}{cr}{C}{\ic 44--46\c \pp{180}\c 318}
+\indexentry {0}{cramped variants}{N}{\ic 93}
+\indexentry {0}{crcr}{C}{\ic \pp{180}\c 318}
+\indexentry {0}{cross-references}{N}{\ic 302}
+\indexentry {0}{csc}{C}{\ic \pp{193}\c 318}
+\indexentry {0}{csname}{C}{\ic 226\c \pp{233}\c 318}
+\indexentry {1}{expanded by {\tt\\edef} rules}{N}{\ic 231}
+\indexentry {0}{cup}{C}{\ic \pp{189}\c 318}
+\indexgroup D
+\indexentry {0}{\char `\d}{C}{\ic \pp{100}\c 318}
+\indexentry {0}{dag}{C}{\ic \pp{98}\c 318}
+\indexentry {0}{dagger}{C}{\ic \pp{189}\c 318}
+\indexentry {0}{dashes}{N}{\ic 14\c 22}
+\indexentry {0}{dashv}{C}{\ic \pp{190}\c 318}
+\indexentry {0}{date}{N}{\ic 225\c 297}
+\indexentry {0}{day}{C}{\ic \pp{225}\c 297\c 318}
+\indexentry {0}{ddag}{C}{\ic \pp{98}\c 318}
+\indexentry {0}{ddagger}{C}{\ic \pp{189}\c 318}
+\indexentry {0}{ddot}{C}{\ic \pp{199}\c 319}
+\indexentry {0}{ddots}{C}{\ic \pp{203}\c 319}
+\indexentry {0}{deadcycles}{C}{\ic \pp{148}\c 319}
+\indexentry {0}{debugging}{N}{\ic 253--261}
+\indexentry {0}{decimal constant}{N}{\ic \pp{58}\c 83}
+\indexentry {0}{decimal point}{N}{\ic 83}
+\indexentry {0}{def}{C}{\ic 57\c \pp{230}\c 319}
+\indexentry {1}{making global}{N}{\ic 66}
+\indexentry {0}{defaulthyphenchar}{C}{\ic \pp{129}\c 319}
+\indexentry {0}{defaultskewchar}{C}{\ic \pp{213}\c 319}
+\indexentry {0}{deg}{C}{\ic \pp{193}\c 319}
+\indexentry {0}{delcode}{C}{\ic 59\c 207\c \pp{251}\c 319}
+\indexentry {0}{delimited arguments}{N}{\ic 48}
+\indexentry {0}{delimiter}{C}{\ic 59\c \pp{204}\c 319}
+\indexentry {0}{delimiter codes}{N}{\ic 59--60\c 207\c 251}
+\indexentry {0}{delimiterfactor}{C}{\ic \pp{205}\c 319}
+\indexentry {0}{delimiters}{N}{\ic \pp{58--60}\c 191--192\c 204--205}
+\indexentry {1}{enlarging}{N}{\ic 211}
+\indexentry {1}{height of}{N}{\ic 205}
+\indexentry {1}{null, space for}{N}{\ic 217}
+\indexentry {1}{parts of}{N}{\ic 212}
+\indexentry {0}{delimitershortfall}{C}{\ic \pp{205}\c 319}
+\indexentry {0}{delta}{C}{\ic \pp{187}\c 319}
+\indexentry {0}{Delta}{C}{\ic \pp{187}\c 319}
+\indexentry {0}{demerits}{N}{\ic \pp{60}\c 74}
+\indexentry {0}{depth}{N}{\ic 51\c \pp{60}\c 167}
+\indexentry {0}{description lists}{N}{\ic 30}
+\indexentry {0}{design size}{N}{\ic 78}
+\indexentry {0}{det}{C}{\ic \pp{193}\c 197\c 319}
+\indexentry {0}{device drivers}{N}{\ic 8\c 64\c 222\c 250}
+\indexentry {1}{instructions from \b\tt\\special\e}{N}{\ic 250}
+\indexentry {1}{page origin known to}{N}{\ic 141}
+\indexentry {0}{diacritical marks}{N}{\see{accents}}
+\indexentry {0}{diagnostic aids}{N}{\ic 253--261}
+\indexentry {0}{diamond}{C}{\ic \pp{189}\c 319}
+\indexentry {0}{diamondsuit}{C}{\ic \pp{188}\c 319}
+\indexentry {0}{\didotpt}{N}{\ic 60}
+\indexentry {0}{dim}{C}{\ic \pp{193}\c 319}
+\indexentry {0}{dimen}{C}{\ic \pp{242}\c 246\c 319}
+\indexentry {0}{\<dimen>}{N}{\ic 4\c 276}
+\indexentry {0}{dimendef}{C}{\ic \pp{245}\c 319}
+\indexentry {0}{dimension registers}{N}{\ic 89\c 242}
+\indexentry {1}{reserved by \b\tt\\newdimen\e}{N}{\ic 244}
+\indexentry {0}{dimensions}{N}{\ic \pp{60--61}}
+\indexentry {1}{comparing}{N}{\ic 237}
+\indexentry {1}{maximum}{N}{\ic 244}
+\indexentry {1}{negative}{N}{\ic 61}
+\indexentry {1}{of box registers}{N}{\ic 167}
+\indexentry {0}{discretionary}{C}{\ic \pp{127}\c 319}
+\indexentry {0}{discretionary hyphens}{N}{\ic 70\c 74\c 125\c 126}
+\indexentry {1}{bad line breaks, correcting with}{N}{\ic 268}
+\indexentry {1}{overfull boxes, correcting with}{N}{\ic 269}
+\indexentry {0}{display math}{N}{\ic 16\c \pp{61}}
+\indexentry {0}{display math mode}{N}{\ic 80\c 81}
+\indexentry {0}{display style}{N}{\ic 93\c 194\c 198}
+\indexentry {0}{displayindent}{C}{\ic \pp{216}\c 319}
+\indexentry {0}{displaylimits}{C}{\ic \pp{195}\c 319}
+\indexentry {0}{displaylines}{C}{\ic \pp{208}\c 297\c 319}
+\indexentry {0}{displays}{N}{}
+\indexentry {1}{actions for every display}{N}{\ic 218}
+\indexentry {1}{multiline}{N}{\ic 208--209}
+\indexentry {1}{spacing parameters for}{N}{\ic 216--217}
+\indexentry {0}{displays, formatting}{N}{\ic 295}
+\indexentry {0}{displaysetup}{C}{\ic 296}
+\indexentry {0}{displaystyle}{C}{\ic 93\c \pp{198}\c 319}
+\indexentry {0}{displaywidowpenalty}{C}{\ic \pp{138}\c 319}
+\indexentry {0}{displaywidth}{C}{\ic \pp{216}\c 319}
+\indexentry {0}{div}{C}{\ic \pp{189}\c 319}
+\indexentry {0}{divide}{C}{\ic \pp{246}\c 319}
+\indexentry {0}{dot}{C}{\ic \pp{199}\c 319}
+\indexentry {0}{dot accent}{N}{\ic 100\c 199}
+\indexentry {0}{doteq}{C}{\ic \pp{190}\c 319}
+\indexentry {0}{dotfill}{C}{\ic \pp{175}\c 319}
+\indexentry {0}{dotless letters}{N}{\ic 100}
+\indexentry {0}{dots}{N}{\ic 99\c 203}
+\indexentry {0}{dots}{C}{\ic \pp{99}\c 319}
+\indexentry {0}{double columns}{N}{\ic 309}
+\indexentry {0}{double dot accent}{N}{\ic 199}
+\indexentry {0}{double spacing}{N}{\ic 134}
+\indexentry {0}{doublehyphendemerits}{C}{\ic \pp{125}\c 320}
+\indexentry {0}{downarrow}{C}{\ic 59\c \pp{192}\c 320}
+\indexentry {0}{Downarrow}{C}{\ic 59\c \pp{192}\c 320}
+\indexentry {0}{downbracefill}{C}{\ic \pp{211}\c 320}
+\indexentry {0}{dp}{C}{\ic \pp{167}\c 320}
+\indexentry {0}{drawing lines}{N}{\see{rules}}
+\indexentry {0}{drivers}{N}{\see{device drivers}}
+\indexentry {0}{dump}{C}{\ic 65\c \pp{263}\c 320}
+\indexentry {0}{\dvifile}{N}{\ic 8}
+\indexentry {1}{as a result file}{N}{\ic 62}
+\indexentry {1}{boxes recorded in log file}{N}{\ic 258}
+\indexentry {1}{converted by driver}{N}{\ic 65}
+\indexentry {1}{created by \TeX's intestines}{N}{\ic 16\c 47}
+\indexentry {1}{material from output routine}{N}{\ic 83\c 84\c 85}
+\indexentry {1}{material inserted by \b\tt\\special\e}{N}{\ic 95}
+\indexentry {1}{receives boxes from \b\tt\\shipout\e}{N}{\ic 148}
+\indexentry {1}{whatsits in}{N}{\ic 95}
+\indexgroup E
+\indexentry {0}{edef}{C}{\ic \pp{230}\c 320}
+\indexentry {1}{expansion of {\tt\\'\it c} in}{N}{\ic 82}
+\indexentry {1}{making global}{N}{\ic 66}
+\indexentry {0}{egroup}{C}{\ic \pp{227}\c 320}
+\indexentry {0}{ehrule}{C}{\ic \pp{292}}
+\indexentry {0}{eject}{C}{\ic \pp{137}\c 266\c 320}
+\indexentry {0}{El Paso}{N}{\ic 93}
+\indexentry {0}{ell}{C}{\ic \pp{188}\c 320}
+\indexentry {0}{ellipsis}{N}{\ic 99}
+\indexentry {0}{else}{C}{\ic 57\c \pp{239}\c 320}
+\indexentry {0}{em}{T}{\ic 60}
+\indexentry {0}{emergencystretch}{C}{\ic 18\c 123\c \pp{124}\c 268\c 320}
+\indexentry {0}{empty}{C}{\ic \pp{241}\c 320}
+\indexentry {0}{emptyset}{C}{\ic \pp{188}\c 320}
+\indexentry {0}{en}{N}{\ic 154}
+\indexentry {0}{end}{C}{\ic \pp{247}\c 320}
+\indexentry {0}{end of file, testing for}{N}{\ic 239}
+\indexentry {0}{end of line}{N}{\ic 53\c 91\c 105}
+\indexentry {0}{endcsname}{C}{\ic 320}
+\indexentry {0}{endgraf}{C}{\ic \pp{111}\c 320}
+\indexentry {0}{endgroup}{C}{\ic \pp{227}\c 320}
+\indexentry {0}{ending the job}{N}{\ic 246}
+\indexentry {0}{endinput}{C}{\ic \pp{247}\c 320}
+\indexentry {0}{endinsert}{C}{\ic \pp{147}\c 320}
+\indexentry {0}{endline}{C}{\ic \pp{180}\c 320}
+\indexentry {0}{endlinechar}{C}{\ic \pp{252}\c 281\c 320}
+\indexentry {0}{enskip}{C}{\ic \pp{154}\c 320}
+\indexentry {0}{enspace}{C}{\ic \pp{154}\c 320}
+\indexentry {0}{entry (column or row)}{N}{\ic 44\c 178--179}
+\indexentry {0}{enumerations}{N}{\ic 298--300}
+\indexentry {0}{environment}{C}{\ic \pp{305}}
+\indexentry {0}{environments}{N}{\ic 304}
+\indexentry {0}{eplain.tex}{T}{\ic 19\c 291--311}
+\indexentry {0}{epsilon}{C}{\ic \pp{187}\c 320}
+\indexentry {0}{eq}{C}{\ic \pp{295}}
+\indexentry {0}{eqalign}{C}{\ic \pp{208}\c 320}
+\indexentry {0}{eqalignno}{C}{\ic \pp{208}\c 297\c 320}
+\indexentry {0}{eqdef}{C}{\ic \pp{304}}
+\indexentry {0}{eqn}{C}{\ic \pp{295}}
+\indexentry {0}{eqno}{C}{\ic \pp{207}\c 320}
+\indexentry {0}{eqprint}{C}{\ic \pp{304}}
+\indexentry {0}{eqref}{C}{\ic \pp{304}}
+\indexentry {0}{equation numbers}{N}{\ic 208}
+\indexentry {0}{equations, labelling}{N}{\ic 304}
+\indexentry {0}{equiv}{C}{\ic \pp{190}\c 191\c 320}
+\indexentry {0}{errhelp}{C}{\ic \pp{261}\c 262\c 320}
+\indexentry {0}{errmessage}{C}{\ic \pp{261}\c 320}
+\indexentry {1}{expanded by {\tt\\edef} rules}{N}{\ic 231}
+\indexentry {0}{error messages}{N}{\ic 9\c 261--262\c 283--288}
+\indexentry {0}{errorcontextlines}{C}{\ic 18\c \pp{262}\c 288\c 320}
+\indexentry {0}{errorstopmode}{C}{\ic \pp{252}\c 321}
+\indexentry {0}{escape character}{N}{\ic 57\c 58\c \pp{61}}
+\indexentry {1}{category code of}{N}{\ic 53}
+\indexentry {1}{represented by \b\tt\\escapechar\e}{N}{\ic 226}
+\indexentry {0}{escapechar}{C}{\ic 61\c \pp{226}\c 250\c 321}
+\indexentry {0}{eta}{C}{\ic \pp{187}\c 321}
+\indexentry {0}{European alphabets}{N}{\ic 97}
+\indexentry {0}{European languages}{N}{\ic 74\c 128}
+\indexentry {0}{everycr}{C}{\ic 180\c \pp{185}\c 321}
+\indexentry {0}{everydisplay}{C}{\ic \pp{218}\c 296\c 299\c 321}
+\indexentry {0}{everyfootnote}{C}{\ic \pp{309}}
+\indexentry {0}{everyhbox}{C}{\ic \pp{164}\c 321}
+\indexentry {0}{everyjob}{C}{\ic \pp{263}\c 321}
+\indexentry {0}{everymath}{C}{\ic \pp{218}\c 321}
+\indexentry {0}{everypar}{C}{\ic 87\c 110\c \pp{113}\c 321}
+\indexentry {1}{for hanging indentation}{N}{\ic 117}
+\indexentry {1}{for setting \b\tt\\looseness\e}{N}{\ic 124}
+\indexentry {0}{everyvbox}{C}{\ic \pp{164}\c 321}
+\indexentry {0}{evrule}{C}{\ic \pp{292}}
+\indexentry {0}{ex}{T}{\ic 60}
+\indexentry {0}{exclamation point}{N}{\ic 13}
+\indexentry {0}{exhyphenpenalty}{C}{\ic \pp{125}\c 321}
+\indexentry {0}{exists}{C}{\ic \pp{188}\c 321}
+\indexentry {0}{exp}{C}{\ic \pp{193}\c 321}
+\indexentry {0}{expandafter}{C}{\ic 231\c \pp{233}\c 321}
+\indexentry {0}{expanding tokens}{N}{\ic 16}
+\indexentry {0}{extra space}{N}{\ic 214\c 258}
+\indexentry {0}{eyes}{N}{\ic 16\c \pp{46}\seealso{\anatomy}}
+\indexgroup F
+\indexentry {0}{factor}{N}{\ic 61}
+\indexentry {0}{fam}{C}{\ic \pp{210}\c 321}
+\indexentry {0}{family}{N}{\ic \pp{62}}
+\indexentry {1}{as part of mathcode}{N}{\ic 80}
+\indexentry {1}{given by \b\tt\\fam\e}{N}{\ic 210}
+\indexentry {1}{reserved by \b\tt\\newfam\e}{N}{\ic 244}
+\indexentry {1}{script size in}{N}{\ic 91}
+\indexentry {1}{scriptscript size in}{N}{\ic 91}
+\indexentry {1}{text size in}{N}{\ic 93}
+\indexentry {1}{variable}{N}{\ic 81}
+\indexentry {0}{fi}{C}{\ic 57\c \pp{240}\c 321}
+\indexentry {0}{fil}{T}{\ic 61\c 67}
+\indexentry {0}{filbreak}{C}{\ic \pp{137}\c 266\c 321}
+\indexentry {0}{file names}{N}{\ic \pp{63}}
+\indexentry {0}{files}{N}{\ic \pp{62--63}\c 247--251}
+\indexentry {1}{testing for existence of}{N}{\ic 295}
+\indexentry {0}{fill}{N}{\ic 175}
+\indexentry {0}{fill}{T}{\ic 61\c 67}
+\indexentry {0}{filll}{T}{\ic 61\c 67}
+\indexentry {0}{finalhyphendemerits}{C}{\ic \pp{126}\c 321}
+\indexentry {0}{firstmark}{C}{\ic 79\c 80\c \pp{144}\c 321}
+\indexentry {0}{fivebf}{C}{\ic \pp{102}\c 321}
+\indexentry {0}{fivei}{C}{\ic \pp{102}\c 321}
+\indexentry {0}{fiverm}{C}{\ic \pp{102}\c 321}
+\indexentry {0}{fivesy}{C}{\ic \pp{102}\c 321}
+\indexentry {0}{flat}{C}{\ic \pp{188}\c 321}
+\indexentry {0}{floating material}{N}{\ic 139\c 146}
+\indexentry {0}{floatingpenalty}{C}{\ic \pp{139}\c 321}
+\indexentry {0}{flush left}{N}{\ic 32\c 68\c 108--109\c 306--307}
+\indexentry {0}{flush right}{N}{\ic 32\c 68\c 108--109\c 306--307}
+\indexentry {0}{flushleft}{C}{\ic \pp{306}}
+\indexentry {0}{flushright}{C}{\ic \pp{306}}
+\indexentry {0}{fmtname}{C}{\ic \pp{225}\c 321}
+\indexentry {0}{fmtversion}{C}{\ic \pp{225}\c 321}
+\indexentry {0}{folio}{C}{\ic \pp{143}\c 321}
+\indexentry {0}{font}{C}{\ic 129\c 213\c \pp{221}\c 293\c 321}
+\indexentry {0}{font files}{N}{\ic 8}
+\indexentry {0}{fontdimen}{C}{\ic \pp{222}\c 293\c 321}
+\indexentry {0}{fontname}{C}{\ic \pp{227}\c 321}
+\indexentry {0}{fonts}{N}{\ic 26\c \pp{64--65}\c 102\c 209}
+\indexentry {1}{composite}{N}{\ic 276--277}
+\indexentry {1}{families of}{N}{\ic 62}
+\indexentry {1}{hyphenation characters for}{N}{\ic 129}
+\indexentry {1}{names of}{N}{\ic 227}
+\indexentry {1}{naming and modifying}{N}{\ic 221--224}
+\indexentry {1}{parameters of}{N}{\ic 222}
+\indexentry {0}{footers}{N}{\ic \pp{65}\c 86}
+\indexentry {1}{marks used in}{N}{\ic 79}
+\indexentry {1}{multiple-line}{N}{\ic 274--275}
+\indexentry {0}{footline}{C}{\ic 65\c 86\c \pp{143}\c 274\c 322}
+\indexentry {0}{footnote}{C}{\ic 70\c \pp{145}\c 147\c 322}
+\indexentry {0}{footnotemarkseparation}{C}{\ic \pp{309}}
+\indexentry {0}{footnotes}{N}{\ic 22\c 309}
+\indexentry {1}{using \b\tt\\textindent\e\ with}{N}{\ic 112}
+\indexentry {0}{for}{C}{\ic 293}
+\indexentry {0}{for loop}{N}{\ic 293}
+\indexentry {0}{forall}{C}{\ic \pp{188}\c 322}
+\indexentry {0}{forbidden control sequence}{N}{\ic 279}
+\indexentry {0}{foreign languages}{N}{\ic 18\seealso{European languages}}
+\indexentry {0}{form feed}{N}{\ic 53}
+\indexentry {0}{format file}{N}{\ic \pp{65}\c 263}
+\indexentry {0}{frac}{C}{\ic \pp{294}}
+\indexentry {0}{fractions}{N}{\ic 200--202}
+\indexentry {1}{produced by \b\tt\\over\e}{N}{\ic 200}
+\indexentry {1}{slashed form}{N}{\ic 294}
+\indexentry {0}{frenchspacing}{C}{\ic 14\c \pp{106}\c 322}
+\indexentry {0}{frown}{C}{\ic \pp{190}\c 322}
+\indexentry {0}{functions, names of}{N}{\ic 193--194}
+\indexentry {0}{futurelet}{C}{\ic \pp{232}\c 322}
+\indexgroup G
+\indexentry {0}{gamma}{C}{\ic \pp{187}\c 322}
+\indexentry {0}{Gamma}{C}{\ic \pp{187}\c 322}
+\indexentry {0}{gcd}{C}{\ic \pp{193}\c 322}
+\indexentry {0}{gdef}{C}{\ic 66\c 228\c \pp{231}\c 322}
+\indexentry {0}{ge}{C}{\ic \pp{190}\c 191\c 322}
+\indexentry {0}{generaldisplay}{C}{\ic 296}
+\indexentry {0}{geq}{C}{\ic \pp{190}\c 191\c 322}
+\indexentry {0}{gets}{C}{\ic \pp{192}\c 322}
+\indexentry {0}{\gffile}{N}{\ic 8\c 65}
+\indexentry {0}{gg}{C}{\ic \pp{190}\c 322}
+\indexentry {0}{global}{N}{\ic \pp{65--66}}
+\indexentry {0}{global}{C}{\ic 65\c \pp{228}\c 229\c 322}
+\indexentry {0}{globaldefs}{C}{\ic 65\c \pp{228}\c 281\c 322}
+\indexentry {0}{glue}{N}{\ic 17\c \pp{66--68}\c 215}
+\indexentry {1}{creating space with}{N}{\ic 91}
+\indexentry {1}{infinitely shrinkable}{N}{\ic 68}
+\indexentry {1}{infinitely stretchable}{N}{\ic 157--158}
+\indexentry {1}{last glue item in a list}{N}{\ic 171}
+\indexentry {1}{mathematical}{N}{\ic 82}
+\indexentry {1}{negative}{N}{\ic 159}
+\indexentry {0}{glue registers}{N}{\ic 89}
+\indexentry {0}{\<glue>}{N}{\ic 4}
+\indexentry {0}{gobble}{C}{\ic \pp{291}}
+\indexentry {0}{gobblethree}{C}{\ic \pp{291}}
+\indexentry {0}{gobbletwo}{C}{\ic \pp{291}}
+\indexentry {0}{goodbreak}{C}{\ic \pp{137}\c 322}
+\indexentry {0}{grave}{C}{\ic \pp{199}\c 322}
+\indexentry {0}{grave accent}{N}{\ic 100\c 199}
+\indexentry {0}{Greek letters}{N}{\ic 187--188\c 210}
+\indexentry {0}{groups}{N}{\ic 15--16\c 53\c \pp{68--69}\c 227--229}
+\indexentry {0}{gullet}{N}{\ic 46\c \pp{47}\c 53}
+\indexgroup H
+\indexentry {0}{\char `\H}{C}{\ic \pp{100}\c 322}
+\indexentry {0}{halign}{C}{\ic 45--46\c \pp{178}\c 180\c 322}
+\indexentry {1}{grouping for}{N}{\ic 16}
+\indexentry {1}{illegal in math mode}{N}{\ic 297}
+\indexentry {1}{inherently vertical}{N}{\ic 69}
+\indexentry {0}{hang}{C}{\ic \pp{117}\c 272\c 322}
+\indexentry {0}{hangafter}{C}{\ic \pp{117}\c 118\c 322}
+\indexentry {0}{hangindent}{C}{\ic 87\c \pp{117}\c 118\c 272\c 322}
+\indexentry {0}{hanging indentation}{N}{\ic 117}
+\indexentry {0}{hat}{C}{\ic \pp{199}\c 322}
+\indexentry {0}{hat accent}{N}{\ic 199}
+\indexentry {0}{hbadness}{C}{\ic 123\c \pp{170}\c 322}
+\indexentry {0}{hbar}{C}{\ic \pp{188}\c 322}
+\indexentry {0}{hbox}{N}{}
+\indexentry {1}{constructing with \b\tt\\hbox\e}{N}{\ic 161}
+\indexentry {0}{hbox}{C}{\ic 51\c \pp{160}\c 268\c 322}
+\indexentry {1}{overfull box from}{N}{\ic 269--270}
+\indexentry {0}{hboxes}{N}{\ic 51\c \pp{69}}
+\indexentry {1}{constructing with \b\tt\\hbox\e}{N}{\ic 160}
+\indexentry {1}{controlling line breaks}{N}{\ic 74}
+\indexentry {1}{horizontal mode for}{N}{\ic 69}
+\indexentry {1}{testing for}{N}{\ic 238}
+\indexentry {0}{headers}{N}{\ic \pp{69}\c 86}
+\indexentry {1}{marks used in}{N}{\ic 79}
+\indexentry {1}{multiple-line}{N}{\ic 274--275}
+\indexentry {0}{headline}{C}{\ic 69\c 86\c \pp{143}\c 274\c 322}
+\indexentry {0}{heartsuit}{C}{\ic \pp{188}\c 322}
+\indexentry {0}{height}{N}{\ic 51\c \pp{69}\c 167}
+\indexentry {0}{help message}{N}{\ic 262}
+\indexentry {0}{help text}{N}{\ic 262}
+\indexentry {0}{hexadecimal digit}{N}{\ic 55}
+\indexentry {0}{hexadecimal numbers}{N}{\ic 82}
+\indexentry {0}{hfil}{C}{\ic \pp{157}\c 159\c 160\c 270\c 322}
+\indexentry {0}{hfill}{C}{\ic \pp{157}\c 322}
+\indexentry {0}{hfilneg}{C}{\ic \pp{159}\c 322}
+\indexentry {0}{hfuzz}{C}{\ic 123\c \pp{171}\c 269\c 322}
+\indexentry {0}{hglue}{C}{\ic \pp{156}\c 157\c 323}
+\indexentry {0}{hidewidth}{C}{\ic \pp{184}\c 323}
+\indexentry {0}{hoffset}{C}{\ic 79\c 86\c \pp{140}\c 323}
+\indexentry {0}{holdinginserts}{C}{\ic 18\c \pp{149}\c 323}
+\indexentry {0}{hom}{C}{\ic \pp{193}\c 323}
+\indexentry {0}{hookleftarrow}{C}{\ic \pp{192}\c 323}
+\indexentry {0}{hookrightarrow}{C}{\ic \pp{192}\c 323}
+\indexentry {0}{horizontal braces}{N}{\ic 211}
+\indexentry {0}{horizontal glue}{N}{\ic 155\c 156}
+\indexentry {0}{horizontal lists}{N}{\ic 51\c 66\c \pp{69}}
+\indexentry {1}{can't contain vertical commands}{N}{\ic 69}
+\indexentry {1}{hboxes formed from}{N}{\ic 69}
+\indexentry {1}{penalties in}{N}{\ic 88}
+\indexentry {1}{rule in}{N}{\ic 90}
+\indexentry {0}{horizontal mode}{N}{\ic \pp{69--70}\c 81}
+\indexentry {1}{rules in}{N}{\ic 173}
+\indexentry {1}{testing for}{N}{\ic 238}
+\indexentry {0}{horizontal rules}{N}{\ic 90--91\c 172--173}
+\indexentry {0}{horizontal skip}{N}{\ic 155}
+\indexentry {0}{horizontal space}{N}{\ic 153--154\c 155--159}
+\indexentry {0}{horizontal tab}{N}{\ic 53}
+\indexentry {0}{hphantom}{C}{\ic \pp{169}\c 323}
+\indexentry {0}{hrule}{C}{\ic 90--91\c \pp{172}\c 273\c 323}
+\indexentry {1}{inherently vertical}{N}{\ic 69}
+\indexentry {0}{hrulefill}{C}{\ic \pp{175}\c 323}
+\indexentry {0}{hsize}{C}{\ic 79\c 86\c \pp{114}\c \pp{140}\c 323}
+\indexentry {1}{set by {\tt\\magnification}}{N}{\ic 223}
+\indexentry {0}{hskip}{C}{\ic 66\c \pp{155}\c 323}
+\indexentry {0}{hss}{C}{\ic \pp{158}\c 269\c 323}
+\indexentry {0}{ht}{C}{\ic \pp{167}\c 323}
+\indexentry {0}{Hungarian umlaut accent}{N}{\ic 100}
+\indexentry {0}{hyphenation}{N}{\ic 32\c \pp{70}\c 126--129\c 139}
+\indexentry {1}{German}{N}{\ic 127}
+\indexentry {1}{penalties for}{N}{\ic 125--126}
+\indexentry {0}{hyphenation}{C}{\ic 70\c \pp{127}\c 323}
+\indexentry {0}{hyphenation rules}{N}{\ic 128}
+\indexentry {0}{hyphenchar}{C}{\ic \pp{129}\c 234\c 323}
+\indexentry {0}{hyphenpenalty}{C}{\ic \pp{125}\c 139\c 323}
+\indexentry {0}{hypotheses}{N}{\ic 131}
+\indexgroup I
+\indexentry {0}{\char `\i}{C}{\ic \pp{100}\c 323}
+\indexentry {0}{ialign}{C}{\ic \pp{180}\c 323}
+\indexentry {0}{if}{C}{\ic \pp{235}\c 323}
+\indexentry {0}{ifcase}{C}{\ic \pp{239}\c 323}
+\indexentry {0}{ifcat}{C}{\ic \pp{235}\c 323}
+\indexentry {0}{ifdim}{C}{\ic \pp{237}\c 323}
+\indexentry {0}{ifempty}{C}{\ic \pp{293}}
+\indexentry {0}{ifeof}{C}{\ic \pp{239}\c 323}
+\indexentry {0}{ifeqno}{C}{\ic \pp{295}}
+\indexentry {0}{iff}{C}{\ic \pp{192}\c 323}
+\indexentry {0}{iffalse}{C}{\ic \pp{239}\c 323}
+\indexentry {0}{ifhbox}{C}{\ic \pp{238}\c 323}
+\indexentry {0}{ifhmode}{C}{\ic \pp{238}\c 323}
+\indexentry {0}{ifinner}{C}{\ic \pp{238}\c 323}
+\indexentry {0}{ifleqno}{C}{\ic \pp{295}}
+\indexentry {0}{ifmmode}{C}{\ic \pp{238}\c 323}
+\indexentry {0}{ifnum}{C}{\ic \pp{237}\c 323}
+\indexentry {0}{ifodd}{C}{\ic \pp{237}\c 324}
+\indexentry {0}{iftrue}{C}{\ic \pp{239}\c 324}
+\indexentry {0}{ifvbox}{C}{\ic \pp{238}\c 324}
+\indexentry {0}{ifvmode}{C}{\ic \pp{238}\c 324}
+\indexentry {0}{ifvoid}{C}{\ic 147\c \pp{238}\c 324}
+\indexentry {0}{ifx}{C}{\ic \pp{236}\c 324}
+\indexentry {0}{ignored characters}{N}{\ic 53}
+\indexentry {0}{ignorespaces}{C}{\ic \pp{252}\c 324}
+\indexentry {0}{Im}{C}{\ic \pp{188}\c 324}
+\indexentry {0}{imath}{C}{\ic 100\c \pp{188}\c 324}
+\indexentry {0}{immediate}{C}{\ic 63\c 95\c 249\c \pp{250}\c 324}
+\indexentry {0}{in}{C}{\ic \pp{190}\c 324}
+\indexentry {0}{inch}{N}{\ic 60}
+\indexentry {0}{incomplete conditional}{N}{\ic 279}
+\indexentry {0}{indent}{C}{\ic 87\c \pp{111}\c 324}
+\indexentry {0}{indentation}{N}{\ic 24\c 111--119}
+\indexentry {0}{inf}{C}{\ic \pp{193}\c 324}
+\indexentry {0}{infty}{C}{\ic \pp{188}\c 324}
+\indexentry {0}{initex}{T}{\ic 65\c 263}
+\indexentry {0}{input}{C}{\ic 7\c 46\c 62\c \pp{247}\c 324}
+\indexentry {0}{input characters}{N}{\ic 280}
+\indexentry {0}{input files}{N}{\ic 9\c 46\c 247--248}
+\indexentry {1}{embedded}{N}{\ic 9}
+\indexentry {0}{input lines}{N}{\ic 252}
+\indexentry {0}{input streams}{N}{\ic \pp{70}}
+\indexentry {1}{opening}{N}{\ic 248}
+\indexentry {1}{reading with \b\tt\\read\e}{N}{\ic 62\c 248}
+\indexentry {1}{reserved by \b\tt\\newread\e}{N}{\ic 244}
+\indexentry {0}{input, preparing}{N}{\ic 10}
+\indexentry {0}{inputlineno}{C}{\ic \pp{247}\c 324}
+\indexentry {0}{insert}{C}{\ic 70\c \pp{147}\c 324}
+\indexentry {0}{<inserted text>}{T}{\ic 286}
+\indexentry {0}{insertions}{N}{\ic \pp{70}}
+\indexentry {1}{commands for}{N}{\ic 146--148}
+\indexentry {1}{forced out by \b\tt\\supereject\e}{N}{\ic 137}
+\indexentry {1}{numbers reserved by \b\tt\\newinsert\e}{N}{\ic 244}
+\indexentry {1}{penalties for}{N}{\ic 139}
+\indexentry {0}{insertpenalties}{C}{\ic \pp{139}\c 324}
+\indexentry {0}{int}{C}{\ic \pp{194}\c 195\c 196\c 324}
+\indexentry {1}{limits after}{N}{\ic 195}
+\indexentry {0}{interline glue}{N}{\ic 52\c \pp{70}\c 133--134}
+\indexentry {0}{interlinepenalty}{C}{\ic \pp{138}\c 324}
+\indexentry {0}{internal mode}{N}{}
+\indexentry {1}{testing for}{N}{\ic 238}
+\indexentry {0}{internal vertical mode}{N}{\ic 81\c 94}
+\indexentry {0}{interword spacing}{N}{\ic 50\c 106\c 107}
+\indexentry {0}{intestines}{N}{\ic 16\c 46\c \pp{47}\seealso{\anatomy}}
+\indexentry {0}{invalid character}{N}{\ic 53\c 54}
+\indexentry {0}{iota}{C}{\ic \pp{187}\c 324}
+\indexentry {0}{it}{C}{\ic \pp{103}\c 324}
+\indexentry {0}{italic correction}{N}{\ic 106}
+\indexentry {0}{item}{C}{\ic \pp{130}\c 324}
+\indexentry {0}{itemitem}{C}{\ic \pp{130}\c 324}
+\indexentry {0}{itemized lists}{N}{\ic 32\c 130\c 298--300}
+\indexentry {0}{items}{N}{\ic \pp{71}}
+\indexentry {0}{itfam}{C}{\ic \pp{210}\c 324}
+\indexgroup J
+\indexentry {0}{\char `\j}{C}{\ic \pp{100}\c 324}
+\indexentry {0}{jmath}{C}{\ic 100\c \pp{188}\c 324}
+\indexentry {0}{jobname}{C}{\ic \pp{225}\c 324}
+\indexentry {0}{jot}{C}{\ic \pp{215}\c 324}
+\indexentry {0}{justification}{N}{\ic \pp{71}\c 108--109\c 116}
+\indexgroup K
+\indexentry {0}{kappa}{C}{\ic \pp{187}\c 324}
+\indexentry {0}{ker}{C}{\ic \pp{193}\c 324}
+\indexentry {0}{kern}{C}{\ic \pp{157}\c 324}
+\indexentry {0}{kerns}{N}{\ic \pp{71--72}\c 157}
+\indexentry {1}{as list items}{N}{\ic 51}
+\indexentry {1}{creating space with}{N}{\ic 91}
+\indexentry {1}{in math formulas}{N}{\ic 215}
+\indexentry {1}{last kern in a list}{N}{\ic 171}
+\indexentry {0}{Knuth, Donald E.}{N}{\ic 18\c 294}
+\indexgroup L
+\indexentry {0}{\char `\l}{C}{\ic \pp{97}\c 324}
+\indexentry {0}{\char `\L}{C}{\ic \pp{97}\c 324}
+\indexentry {0}{lambda}{C}{\ic \pp{187}\c 324}
+\indexentry {0}{Lambda}{C}{\ic \pp{187}\c 324}
+\indexentry {0}{Lamport, Leslie}{N}{\ic 18}
+\indexentry {0}{land}{C}{\ic \pp{189}\c 325}
+\indexentry {0}{langle}{C}{\ic 59\c \pp{191}\c 325}
+\indexentry {0}{language}{C}{\ic 18\c 95\c \pp{128}\c 325}
+\indexentry {0}{lastbox}{C}{\ic \pp{171}\c 172\c 325}
+\indexentry {0}{lastkern}{C}{\ic \pp{171}\c 234\c 325}
+\indexentry {0}{lastpenalty}{C}{\ic \pp{171}\c 234\c 325}
+\indexentry {0}{lastskip}{C}{\ic \pp{171}\c 234\c 325}
+\indexentry {0}{\LaTeX}{N}{\ic \r8\c 18\c 225}
+\indexentry {0}{LaTeX}{C}{\ic \pp{294}}
+\indexentry {0}{lbrace}{C}{\ic 59\c \pp{191}\c 325}
+\indexentry {0}{lbrack}{C}{\ic 59\c \pp{98}\c \pp{191}\c 325}
+\indexentry {0}{lccode}{C}{\ic \pp{103}\c 325}
+\indexentry {0}{lceil}{C}{\ic 59\c \pp{191}\c 325}
+\indexentry {0}{ldotp}{C}{\ic \pp{196}\c 325}
+\indexentry {0}{ldots}{C}{\ic \pp{203}\c 325}
+\indexentry {0}{le}{C}{\ic \pp{190}\c 191\c 325}
+\indexentry {0}{leaders}{N}{\ic \pp{72--73}\c 174--176}
+\indexentry {0}{leaders}{C}{\ic 72--73\c \pp{174}\c 325}
+\indexentry {0}{left}{C}{\ic 58\c \pp{204}\c 325}
+\indexentry {0}{leftarrow}{C}{\ic \pp{192}\c 325}
+\indexentry {0}{Leftarrow}{C}{\ic \pp{192}\c 325}
+\indexentry {0}{leftarrowfill}{C}{\ic \pp{175}\c 325}
+\indexentry {0}{leftdisplays}{C}{\ic \pp{295}\c \pp{296}\c \pp{297}}
+\indexentry {0}{leftharpoondown}{C}{\ic \pp{192}\c 325}
+\indexentry {0}{leftharpoonup}{C}{\ic \pp{192}\c 325}
+\indexentry {0}{lefthyphenmin}{C}{\ic 18\c \pp{128}\c 325}
+\indexentry {0}{leftline}{C}{\ic 68\c \pp{108}\c 325}
+\indexentry {0}{leftrightarrow}{C}{\ic \pp{192}\c 325}
+\indexentry {0}{Leftrightarrow}{C}{\ic \pp{192}\c 325}
+\indexentry {0}{leftskip}{C}{\ic 71\c \pp{115}\c 272\c 325}
+\indexentry {0}{lemmas}{N}{\ic 32\c 131}
+\indexentry {0}{leq}{C}{\ic \pp{190}\c 191\c 325}
+\indexentry {0}{leqalignno}{C}{\ic \pp{208}\c 297\c 325}
+\indexentry {0}{leqno}{C}{\ic \pp{207}\c 325}
+\indexentry {0}{let}{C}{\ic 57\c \pp{232}\c 325}
+\indexentry {0}{letreturn}{C}{\ic \pp{291}\c 293}
+\indexentry {0}{letter}{N}{\ic 53\c 56}
+\indexentry {0}{letter}{C}{\ic \pp{291}}
+\indexentry {0}{lfloor}{C}{\ic 59\c \pp{191}\c 325}
+\indexentry {0}{lg}{C}{\ic \pp{193}\c 325}
+\indexentry {0}{lgroup}{C}{\ic \pp{204}\c 326}
+\indexentry {0}{li}{C}{\ic \pp{298}}
+\indexentry {0}{ligatures}{N}{\ic \pp{73--74}\c 97--98\c 101}
+\indexentry {0}{lim}{C}{\ic \pp{193}\c 197\c 326}
+\indexentry {0}{liminf}{C}{\ic \pp{193}\c 326}
+\indexentry {0}{limits}{N}{\ic 194}
+\indexentry {0}{limits}{C}{\ic \pp{195}\c 326}
+\indexentry {0}{limsup}{C}{\ic \pp{193}\c 326}
+\indexentry {0}{line}{C}{\ic \pp{109}\c 326}
+\indexentry {0}{line breaking}{N}{\ic 17\c 47\c 272}
+\indexentry {1}{tracing}{N}{\ic 259}
+\indexentry {0}{line breaks}{N}{\ic \pp{74--75}\c 120--129}
+\indexentry {1}{and paragraph shape}{N}{\ic 114--120}
+\indexentry {1}{bad}{N}{\ic 268}
+\indexentry {1}{badness for}{N}{\ic 50}
+\indexentry {1}{deleting}{N}{\ic 13}
+\indexentry {1}{demerits for}{N}{\ic 60}
+\indexentry {1}{encouraging or discouraging}{N}{\ic 120--122}
+\indexentry {1}{in math formulas}{N}{\ic 121}
+\indexentry {1}{kerns at}{N}{\ic 157}
+\indexentry {1}{parameters affecting}{N}{\ic 123--126}
+\indexentry {0}{line length}{N}{\ic 114}
+\indexentry {0}{line spacing}{N}{\ic 133}
+\indexentry {0}{linepenalty}{C}{\ic \pp{125}\c 326}
+\indexentry {0}{lineskip}{C}{\ic 70\c \pp{133--134}\c 326}
+\indexentry {0}{lineskiplimit}{C}{\ic 70\c \pp{133--134}\c 326}
+\indexentry {0}{listcompact}{C}{\ic \pp{298}}
+\indexentry {0}{listing}{C}{\ic \pp{300}}
+\indexentry {0}{lists}{N}{\ic \pp{75}}
+\indexentry {0}{ll}{C}{\ic \pp{190}\c 326}
+\indexentry {0}{llap}{C}{\ic \pp{109}\c 326}
+\indexentry {0}{lmoustache}{C}{\ic \pp{212}\c 326}
+\indexentry {0}{ln}{C}{\ic \pp{193}\c 326}
+\indexentry {0}{lnot}{C}{\ic \pp{188}\c 189\c 326}
+\indexentry {0}{local information}{N}{\ic \pp{7}\c 9\c 128}
+\indexentry {0}{log}{C}{\ic \pp{193}\c 326}
+\indexentry {0}{log file}{N}{\ic \pp{75}\c 313}
+\indexentry {1}{as a result file}{N}{\ic 62}
+\indexentry {1}{error messages}{N}{\ic 283}
+\indexentry {1}{tracing statistics in}{N}{\ic 260}
+\indexentry {1}{written by \b\tt\\wlog\e}{N}{\ic 261}
+\indexentry {1}{written by \b\tt\\write\e}{N}{\ic 250}
+\indexentry {0}{loggingall}{C}{\ic \pp{292}}
+\indexentry {0}{logos}{N}{\ic 64}
+\indexentry {0}{long}{C}{\ic \pp{231}\c 236\c 326}
+\indexentry {0}{longleftarrow}{C}{\ic \pp{192}\c 326}
+\indexentry {0}{Longleftarrow}{C}{\ic \pp{192}\c 326}
+\indexentry {0}{longleftrightarrow}{C}{\ic \pp{192}\c 326}
+\indexentry {0}{Longleftrightarrow}{C}{\ic \pp{192}\c 326}
+\indexentry {0}{longmapsto}{C}{\ic \pp{192}\c 326}
+\indexentry {0}{longrightarrow}{C}{\ic \pp{192}\c 326}
+\indexentry {0}{Longrightarrow}{C}{\ic \pp{192}\c 326}
+\indexentry {0}{loop}{C}{\ic \pp{240}\c 326}
+\indexentry {0}{loops}{N}{\ic 240--241}
+\indexentry {0}{looseness}{C}{\ic 87\c \pp{124}\c 267\c 326}
+\indexentry {0}{lor}{C}{\ic \pp{189}\c 326}
+\indexentry {0}{lower}{C}{\ic 52\c \pp{166}\c 326}
+\indexentry {0}{lower limits}{N}{\ic 197}
+\indexentry {0}{lowercase}{N}{}
+\indexentry {1}{conversion to}{N}{\ic 103--104}
+\indexentry {0}{lowercase}{C}{\ic \pp{104}\c 326}
+\indexentry {0}{lq}{C}{\ic \pp{98}\c 326}
+\indexgroup M
+\indexentry {0}{macron accent}{N}{\ic 100}
+\indexentry {0}{macros}{N}{\ic \pp{75--78}\c 230--241}
+\indexentry {1}{arguments of}{N}{\ic 48\c 280}
+\indexentry {1}{controlling expansion of}{N}{\ic 233--235}
+\indexentry {1}{defining}{N}{\ic 230--232}
+\indexentry {1}{expanded in \TeX's stomach}{N}{\ic 47}
+\indexentry {1}{global}{N}{\ic 66}
+\indexentry {1}{in auxiliary files}{N}{\ic 7}
+\indexentry {1}{making readable}{N}{\ic 281}
+\indexentry {1}{named by active characters}{N}{\ic 43}
+\indexentry {1}{outer}{N}{\ic 83\c 279}
+\indexentry {1}{parameters of}{N}{\ic 48\c 53\c 75--77\c 280}
+\indexentry {1}{tracing}{N}{\ic 258}
+\indexentry {1}{using \b\tt\\begingroup\e\ and \b\tt\\endgroup\e\ in}{N}{\ic 227}
+\indexentry {1}{using \b\tt\\bgroup\e\ and \b\tt\\egroup\e\ in}{N}{\ic 228}
+\indexentry {0}{mag}{C}{\ic 61\c 78\c \pp{223}\c 326}
+\indexentry {0}{magnification}{N}{\ic 8\c 61\c \pp{78}}
+\indexentry {0}{magnification}{C}{\ic \pp{223}\c 326}
+\indexentry {0}{magstep}{C}{\ic 78\c \pp{223}\c 326}
+\indexentry {0}{magstephalf}{C}{\ic 78\c 223\c \pp{224}\c 327}
+\indexentry {0}{main vertical list}{N}{\ic 84}
+\indexentry {0}{makeactive}{C}{\ic \pp{291}}
+\indexentry {0}{makeblankbox}{C}{\ic \pp{294}}
+\indexentry {0}{makecolumns}{C}{\ic \pp{307}}
+\indexentry {0}{makefootline}{C}{\ic 274}
+\indexentry {0}{makeheadline}{C}{\ic 274}
+\indexentry {0}{mapsto}{C}{\ic \pp{192}\c 327}
+\indexentry {0}{margins}{N}{\ic 24\c \pp{79}\c 86}
+\indexentry {0}{mark}{C}{\ic 79\c 80\c \pp{144}\c 327}
+\indexentry {0}{mark text}{N}{\ic 79\c 144}
+\indexentry {0}{marks}{N}{\ic \pp{79--80}\c 144--145}
+\indexentry {1}{for split lists}{N}{\ic 144}
+\indexentry {1}{with headers or footers}{N}{\ic 86}
+\indexentry {0}{math}{N}{\ic 16\c 38\c 40\c 187--219}
+\indexentry {1}{accents}{N}{\ic 199}
+\indexentry {0}{math characters}{N}{\ic 232}
+\indexentry {1}{described by mathcodes}{N}{\ic 80}
+\indexentry {0}{math display}{N}{\ic 138\c 271}
+\indexentry {0}{math extensions}{N}{\ic 62}
+\indexentry {0}{math mode}{N}{\ic \pp{80}\c 81}
+\indexentry {1}{testing for}{N}{\ic 238}
+\indexentry {0}{math shift}{N}{\ic 53}
+\indexentry {0}{math symbols}{N}{\ic 64\c 198}
+\indexentry {0}{mathaccent}{C}{\ic \pp{199}\c 327}
+\indexentry {0}{mathbin}{C}{\ic \pp{218}\c 327}
+\indexentry {0}{mathchar}{C}{\ic \pp{99}\c 327}
+\indexentry {0}{mathchardef}{C}{\ic \pp{232}\c 234\c 327}
+\indexentry {0}{mathchoice}{C}{\ic \pp{198}\c 327}
+\indexentry {0}{mathclose}{C}{\ic \pp{218}\c 327}
+\indexentry {0}{mathcode}{C}{\ic 81\c 205\c \pp{251}\c 252\c 327}
+\indexentry {0}{mathcodes}{N}{\ic \pp{80--81}\c 232}
+\indexentry {1}{class encoded in}{N}{\ic 56}
+\indexentry {0}{mathematical units}{N}{\ic \pp{81}\c 82}
+\indexentry {0}{mathinner}{C}{\ic \pp{218}\c 327}
+\indexentry {0}{mathop}{C}{\ic \pp{218}\c 327}
+\indexentry {0}{mathopen}{C}{\ic \pp{218}\c 327}
+\indexentry {0}{mathord}{C}{\ic \pp{218}\c 327}
+\indexentry {0}{mathpalette}{C}{\ic \pp{198}\c 327}
+\indexentry {0}{mathpunct}{C}{\ic \pp{218}\c 327}
+\indexentry {0}{mathrel}{C}{\ic \pp{218}\c 327}
+\indexentry {0}{mathstrut}{C}{\ic 92\c \pp{168}\c 327}
+\indexentry {0}{mathsurround}{C}{\ic \pp{217}\c 327}
+\indexentry {0}{matrix}{N}{\ic 205}
+\indexentry {0}{matrix}{C}{\ic \pp{205}\c 327}
+\indexentry {0}{max}{C}{\ic \pp{193}\c 327}
+\indexentry {0}{maxdeadcycles}{C}{\ic \pp{148}\c 327}
+\indexentry {0}{maxdepth}{C}{\ic \pp{141}\c 150\c 327}
+\indexentry {0}{maxdimen}{C}{\ic \pp{244}\c 327}
+\indexentry {0}{meaning}{C}{\ic \pp{226}\c 327}
+\indexentry {0}{medbreak}{C}{\ic \pp{137}\c 327}
+\indexentry {0}{medmuskip}{C}{\ic \pp{214}\c 327}
+\indexentry {0}{medskip}{C}{\ic 137\c \pp{154}\c 327}
+\indexentry {0}{medskipamount}{C}{\ic \pp{155}\c 327}
+\indexentry {0}{message}{C}{\ic \pp{261}\c 327}
+\indexentry {1}{expanded by {\tt\\edef} rules}{N}{\ic 231}
+\indexentry {0}{messages, sending}{N}{\ic 261--262}
+\indexentry {0}{\Metafont}{N}{\ic \r7\c 34}
+\indexentry {0}{metrics file}{N}{\ic 8\c 59\c 221}
+\indexentry {1}{default hyphen in}{N}{\ic 129}
+\indexentry {1}{default skew character in}{N}{\ic 213}
+\indexentry {1}{italic correction in}{N}{\ic 106}
+\indexentry {0}{MF}{C}{\ic \pp{294}}
+\indexentry {0}{mid}{C}{\ic \pp{190}\c 327}
+\indexentry {0}{midinsert}{C}{\ic 70\c \pp{146}\c 147\c 328}
+\indexentry {0}{millimeter}{N}{\ic 60}
+\indexentry {0}{min}{C}{\ic \pp{193}\c 328}
+\indexentry {0}{mit}{C}{\ic \pp{209}\c 328}
+\indexentry {0}{mkern}{C}{\ic \pp{215}\c 328}
+\indexentry {0}{models}{C}{\ic \pp{190}\c 328}
+\indexentry {0}{modes}{N}{\ic 17\c \pp{81--82}}
+\indexentry {0}{modulus}{N}{\ic 193\c 194}
+\indexentry {0}{month}{C}{\ic \pp{225}\c 297\c 328}
+\indexentry {0}{monthname}{C}{\ic \pp{297}}
+\indexentry {0}{mouth}{N}{\ic 16\c \pp{46}\seealso{\anatomy}}
+\indexentry {0}{moveleft}{C}{\ic 52\c 161\c \pp{166}\c 328}
+\indexentry {0}{moveright}{C}{\ic 52\c 161\c \pp{166}\c 328}
+\indexentry {0}{mp}{C}{\ic \pp{189}\c 328}
+\indexentry {0}{mskip}{C}{\ic 82\c \pp{215}\c 328}
+\indexentry {0}{mu}{T}{\ic 82\c 243}
+\indexentry {0}{mu}{C}{\ic \pp{187}\c 328}
+\indexentry {0}{muglue}{N}{\ic \pp{82}}
+\indexentry {0}{muglue registers}{N}{\ic 89}
+\indexentry {0}{multiply}{C}{\ic \pp{246}\c 328}
+\indexentry {0}{multispan}{C}{\ic \pp{182}\c 328}
+\indexentry {0}{mushrooms}{N}{\ic 36}
+\indexentry {0}{music symbols}{N}{\ic 26\c 188}
+\indexentry {0}{muskip}{C}{\ic \pp{242}\c 246\c 328}
+\indexentry {0}{muskip registers}{N}{\ic 243}
+\indexentry {1}{reserved by \b\tt\\newmuskip\e}{N}{\ic 244}
+\indexentry {0}{muskipdef}{C}{\ic \pp{245}\c 328}
+\indexgroup N
+\indexentry {0}{nabla}{C}{\ic \pp{188}\c 328}
+\indexentry {0}{narrower}{C}{\ic \pp{114}\c 272\c 328}
+\indexentry {0}{natural}{C}{\ic \pp{188}\c 328}
+\indexentry {0}{ne}{C}{\ic \pp{190}\c 328}
+\indexentry {0}{nearrow}{C}{\ic \pp{192}\c 328}
+\indexentry {0}{neg}{C}{\ic \pp{188}\c 189\c 328}
+\indexentry {0}{negthinspace}{C}{\ic \pp{153}\c 328}
+\indexentry {0}{neq}{C}{\ic \pp{190}\c 328}
+\indexentry {0}{newbox}{C}{\ic 53\c 89\c \pp{244}\c 328}
+\indexentry {0}{newcount}{C}{\ic 89\c 242\c \pp{244}\c 328}
+\indexentry {0}{newdimen}{C}{\ic 89\c \pp{244}\c 328}
+\indexentry {0}{newfam}{C}{\ic 62\c \pp{244}\c 328}
+\indexentry {0}{newhelp}{C}{\ic \pp{262}\c 305\c 328}
+\indexentry {0}{newif}{C}{\ic \pp{240}\c 328}
+\indexentry {0}{newinsert}{C}{\ic 147\c \pp{244}\c 328}
+\indexentry {0}{newlanguage}{C}{\ic 18\c \pp{244}\c 328}
+\indexentry {0}{newlinechar}{C}{\ic \pp{250}\c 261\c 262\c 328}
+\indexentry {0}{newmuskip}{C}{\ic 89\c \pp{244}\c 328}
+\indexentry {0}{newread}{C}{\ic 63\c \pp{244}\c 328}
+\indexentry {0}{newskip}{C}{\ic 89\c \pp{244}\c 329}
+\indexentry {0}{\newTeX}{N}{\ic 18\c 156}
+\indexentry {0}{newtoks}{C}{\ic 89\c \pp{244}\c 329}
+\indexentry {0}{newwrite}{C}{\ic 63\c \pp{244}\c 329}
+\indexentry {0}{ni}{C}{\ic \pp{190}\c 329}
+\indexentry {0}{noalign}{C}{\ic 46\c 180\c \pp{183}\c 329}
+\indexentry {0}{noboundary}{C}{\ic 18\c 73\c \pp{101}\c 329}
+\indexentry {0}{nobreak}{C}{\ic 74\c \pp{121}\c \pp{136}\c 266\c 329}
+\indexentry {0}{noexpand}{C}{\ic 231\c \pp{234}\c 329}
+\indexentry {0}{noindent}{C}{\ic 87\c \pp{112}\c 329}
+\indexentry {0}{nointerlineskip}{C}{\ic \pp{135}\c 329}
+\indexentry {0}{nolimits}{C}{\ic \pp{195}\c 329}
+\indexentry {0}{nonfrenchspacing}{C}{\ic \pp{106}\c 329}
+\indexentry {0}{nonscript}{C}{\ic \pp{215}\c 218\c 329}
+\indexentry {0}{nonstopmode}{C}{\ic \pp{253}\c 329}
+\indexentry {0}{nopagenumbers}{C}{\ic \pp{142}\c 329}
+\indexentry {0}{normalbaselines}{C}{\ic \pp{134}\c 329}
+\indexentry {0}{normalbaselineskip}{C}{\ic \pp{134}\c 329}
+\indexentry {0}{normalbottom}{C}{\ic \pp{137}\c 329}
+\indexentry {0}{normallineskip}{C}{\ic \pp{134}\c 329}
+\indexentry {0}{normallineskiplimit}{C}{\ic \pp{134}\c 329}
+\indexentry {0}{not}{C}{\ic 329}
+\indexentry {0}{notin}{C}{\ic \pp{190}\c 329}
+\indexentry {0}{nu}{C}{\ic \pp{187}\c 329}
+\indexentry {0}{null}{C}{\ic \pp{169}\c 329}
+\indexentry {0}{nulldelimiterspace}{C}{\ic 60\c 204\c \pp{217}\c 329}
+\indexentry {0}{nullfont}{C}{\ic \pp{102}\c 329}
+\indexentry {0}{number}{C}{\ic 83\c \pp{224}\c 329}
+\indexentry {0}{\<number>}{N}{\ic 4}
+\indexentry {0}{numberedfootnote}{C}{\ic \pp{309}}
+\indexentry {0}{numberedlist}{C}{\ic \pp{298}}
+\indexentry {0}{numberedmarker}{C}{\ic \pp{299}}
+\indexentry {0}{numbername}{C}{\ic \pp{295}}
+\indexentry {0}{numbers}{N}{\ic \pp{82--83}}
+\indexentry {1}{comparing}{N}{\ic 237}
+\indexentry {1}{converting to characters}{N}{\ic 224}
+\indexentry {1}{testing for odd/even}{N}{\ic 237}
+\indexentry {0}{nwarrow}{C}{\ic \pp{192}\c 329}
+\indexgroup O
+\secondprinting{\vskip.33\baselineskip}
+\indexentry {0}{\char `\o}{C}{\ic \pp{97}\c 330}
+\indexentry {0}{\char `\O}{C}{\ic \pp{97}\c 330}
+\indexentry {0}{obeylines}{C}{\ic \pp{122}\c 278\c 293\c 330}
+\indexentry {0}{obeyspaces}{C}{\ic \pp{107}\c 122\c 278\c 293\c 330}
+\indexentry {0}{obeywhitespace}{C}{\ic 107\c 278\c \pp{293}}
+\indexentry {0}{octal numbers}{N}{\ic 82}
+\indexentry {0}{odot}{C}{\ic \pp{189}\c 330}
+\indexentry {0}{oe}{C}{\ic \pp{97}\c 330}
+\indexentry {0}{OE}{C}{\ic \pp{97}\c 330}
+\indexentry {0}{offinterlineskip}{C}{\ic 92\c \pp{135}\c 167\c 330}
+\indexentry {0}{oint}{C}{\ic \pp{194}\c 330}
+\indexentry {0}{oldstyle}{C}{\ic \pp{209}\c 330}
+\indexentry {0}{omega}{C}{\ic \pp{187}\c 330}
+\indexentry {0}{Omega}{C}{\ic \pp{187}\c 330}
+\indexentry {0}{omicron}{N}{\ic 188}
+\indexentry {0}{ominus}{C}{\ic \pp{189}\c 330}
+\indexentry {0}{omit}{C}{\ic \pp{181}\c 330}
+\indexentry {0}{openin}{C}{\ic 63\c \pp{247}\c 248\c 330}
+\indexentry {0}{opening}{N}{\ic 191}
+\indexentry {0}{openout}{C}{\ic 63\c \pp{249}\c 330}
+\indexentry {1}{whatsit produced by}{N}{\ic 95}
+\indexentry {1}{with {\tt\\immediate}}{N}{\ic 250}
+\indexentry {0}{openup}{C}{\ic \pp{135}\c 183\c 330}
+\indexentry {0}{operating system}{N}{\ic 62\c 63}
+\indexentry {0}{operations}{N}{\ic 189--190}
+\indexentry {0}{operators}{N}{\ic 126}
+\indexentry {1}{large}{N}{\ic 194--196}
+\indexentry {0}{oplus}{C}{\ic \pp{189}\c 330}
+\indexentry {0}{or}{C}{\ic 330}
+\indexentry {0}{ordinary horizontal mode}{N}{\ic 69\c 81}
+\indexentry {0}{ordinary mode}{N}{\ic \pp{83}}
+\indexentry {0}{ordinary symbol}{N}{\ic 188}
+\indexentry {0}{ordinary vertical mode}{N}{\ic 81\c 94}
+\indexentry {0}{origin}{N}{\see{page origin}}
+\indexentry {0}{oslash}{C}{\ic \pp{189}\c 330}
+\indexentry {0}{other}{C}{\ic \pp{291}}
+\indexentry {0}{other characters}{N}{\ic 53\c 56}
+\indexentry {0}{otimes}{C}{\ic \pp{189}\c 330}
+\indexentry {0}{outer}{N}{\ic \pp{83}\c 232}
+\indexentry {0}{outer}{C}{\ic 83\c \pp{232}\c 236\c 279\c 330}
+\indexentry {0}{output}{C}{\ic 84\c \pp{148}\c 330}
+\indexentry {0}{output devices}{N}{\ic 8}
+\indexentry {0}{output files}{N}{\ic 249--251}
+\indexentry {0}{output routine}{N}{\ic \pp{83--84}\c 147\c 148--149}
+\indexentry {1}{default in \plainTeX}{N}{\ic 148}
+\indexentry {1}{insertions, treatment of}{N}{\ic 70}
+\indexentry {1}{meaning of \b\tt\\insertpenalties\e\ in}{N}{\ic 139}
+\indexentry {0}{output streams}{N}{\ic 63\c \pp{84}}
+\indexentry {1}{closing}{N}{\ic 249}
+\indexentry {1}{opening}{N}{\ic 249}
+\indexentry {1}{reserved by \b\tt\\newwrite\e}{N}{\ic 244}
+\indexentry {1}{writing}{N}{\ic 249}
+\indexentry {0}{<output>}{T}{\ic 288}
+\indexentry {0}{outputpenalty}{C}{\ic \pp{149}\c 330}
+\indexentry {0}{over}{C}{\ic \pp{200}\c 204\c 330}
+\indexentry {0}{overbrace}{C}{\ic \pp{202}\c 212\c 330}
+\indexentry {0}{overfull boxes}{N}{\ic 124\c 268--270}
+\indexentry {0}{overfullrule}{C}{\ic \pp{170}\c 330}
+\indexentry {0}{overlapping text}{N}{\ic 109}
+\indexentry {0}{overleftarrow}{C}{\ic \pp{202}\c 330}
+\indexentry {0}{overline}{C}{\ic \pp{202}\c 330}
+\indexentry {0}{overprinting}{N}{\ic 109}
+\indexentry {0}{overrightarrow}{C}{\ic \pp{202}\c 330}
+\indexentry {0}{overwithdelims}{C}{\ic 58\c \pp{201}\c 330}
+\indexentry {0}{owns}{C}{\ic \pp{190}\c 330}
+\indexgroup P
+\secondprinting{\vskip1.5\baselineskip}
+\indexentry {0}{\char `\P}{C}{\ic \pp{98}\c 331}
+\indexentry {0}{page breaks}{N}{\ic \pp{85--86}\c 136--140}
+\indexentry {1}{bad}{N}{\ic 265--268}
+\indexentry {1}{badness for}{N}{\ic 50}
+\indexentry {1}{encouraging or discouraging}{N}{\ic 136--138}
+\indexentry {1}{glue at}{N}{\ic 268}
+\indexentry {1}{in split lists}{N}{\ic 149}
+\indexentry {1}{inserted by \TeX's stomach}{N}{\ic 17}
+\indexentry {1}{insertions at}{N}{\ic 70}
+\indexentry {1}{kerns at}{N}{\ic 157}
+\indexentry {1}{parameters for}{N}{\ic 138--140}
+\indexentry {1}{tracing}{N}{\ic 259}
+\indexentry {0}{page builder}{N}{\ic 84\c \pp{86}}
+\indexentry {0}{page dimensions}{N}{\ic 140}
+\indexentry {0}{page footers}{N}{\see{footers}}
+\indexentry {0}{page headers}{N}{\see{headers}}
+\indexentry {0}{page layout}{N}{\ic \pp{86}}
+\indexentry {0}{page numbering}{N}{\ic 90\c 142--143}
+\indexentry {0}{page origin}{N}{\ic 140}
+\indexentry {0}{pagedepth}{C}{\ic \pp{139}\c 331}
+\indexentry {0}{pagefilllstretch}{C}{\ic \pp{140}\c 331}
+\indexentry {0}{pagefillstretch}{C}{\ic \pp{140}\c 331}
+\indexentry {0}{pagefilstretch}{C}{\ic \pp{140}\c 331}
+\indexentry {0}{pagegoal}{C}{\ic \pp{139}\c 140\c 149\c 331}
+\indexentry {0}{pageinsert}{C}{\ic 70\c \pp{146}\c 147\c 331}
+\indexentry {0}{pageno}{C}{\ic \pp{142}\c 143\c 331}
+\indexentry {0}{pages}{N}{\ic 17\c \pp{84--85}}
+\indexentry {1}{assembled in \TeX's stomach}{N}{\ic 47}
+\indexentry {0}{pageshrink}{C}{\ic \pp{140}\c 331}
+\indexentry {0}{pagestretch}{C}{\ic \pp{140}\c 331}
+\indexentry {0}{pagetotal}{C}{\ic \pp{139}\c 331}
+\indexentry {0}{Palatino fonts}{N}{\ic 34\c 64}
+\indexentry {0}{par}{C}{\ic 86\c \pp{110}\c 111\c 331}
+\indexentry {1}{ending a paragraph with}{N}{\ic 86}
+\indexentry {1}{from empty line}{N}{\ic 91\c 105}
+\indexentry {1}{in macro arguments}{N}{\ic 231}
+\indexentry {1}{when changing paragraph shape}{N}{\ic 272}
+\indexentry {0}{paragraph skip}{N}{\ic 141}
+\indexentry {0}{paragraphs}{N}{\ic \pp{86--87}}
+\indexentry {1}{ending}{N}{\ic 12\c 22}
+\indexentry {1}{glue at end of}{N}{\ic 111}
+\indexentry {1}{glue between}{N}{\ic 141}
+\indexentry {1}{indenting}{N}{\see{indentation}}
+\indexentry {1}{narrow}{N}{\ic 24\c 114}
+\indexentry {1}{shaping}{N}{\ic 110--120\c 272}
+\indexentry {1}{starting}{N}{\ic 110}
+\indexentry {0}{parallel}{C}{\ic \pp{190}\c 331}
+\indexentry {0}{parameters}{N}{\ic \pp{87--88}}
+\indexentry {1}{and arguments}{N}{\ic 48}
+\indexentry {1}{as commands}{N}{\ic 4\c 12}
+\indexentry {1}{assignments to}{N}{\ic 49}
+\indexentry {1}{delimited}{N}{\ic 77}
+\indexentry {1}{indicated by \b\tt\#\e}{N}{\ic 53}
+\indexentry {1}{like registers}{N}{\ic 89}
+\indexentry {1}{undelimited}{N}{\ic 76}
+\indexentry {1}{using \b\tt\\the\e\ with}{N}{\ic 234}
+\indexentry {0}{parentheses}{N}{\ic 58\c 204}
+\indexentry {0}{parfillskip}{C}{\ic \pp{111}\c 331}
+\indexentry {0}{parindent}{C}{\ic 4\c 87\c \pp{113}\c 331}
+\indexentry {1}{indentation for itemized lists}{N}{\ic 130}
+\indexentry {0}{parshape}{C}{\ic 87\c 117\c \pp{118}\c 331}
+\indexentry {0}{parskip}{C}{\ic 111\c 112\c 113\c \pp{141}\c 267\c 269\c 331}
+\indexentry {0}{partial}{C}{\ic \pp{188}\c 331}
+\indexentry {0}{Patashnik, Oren}{N}{\ic 19}
+\indexentry {0}{pausing}{C}{\ic \pp{253}\c 331}
+\indexentry {0}{penalties}{N}{\ic \pp{88}}
+\indexentry {1}{in horizontal lists}{N}{\ic 74}
+\indexentry {1}{in vertical lists}{N}{\ic 85}
+\indexentry {1}{last penalty in a list}{N}{\ic 171}
+\indexentry {0}{penalty}{C}{\ic \pp{121}\c \pp{136}\c 331}
+\indexentry {0}{percentchar}{C}{\ic 292}
+\indexentry {0}{period}{N}{\ic 12\c 13}
+\indexentry {0}{perp}{C}{\ic \pp{190}\c 331}
+\indexentry {0}{phantom}{C}{\ic \pp{168}\c 331}
+\indexentry {0}{phantoms}{N}{\ic 168--169}
+\indexentry {0}{phi}{C}{\ic \pp{187}\c 331}
+\indexentry {0}{Phi}{C}{\ic \pp{187}\c 331}
+\indexentry {0}{pi}{C}{\ic \pp{187}\c 331}
+\indexentry {0}{Pi}{C}{\ic \pp{187}\c 194\c 331}
+\indexentry {0}{pica}{N}{\ic 60}
+\indexentry {0}{pixel file}{N}{\ic 65}
+\indexentry {0}{\pkfile}{N}{\ic 8\c 65}
+\indexentry {0}{plainoutput}{C}{\ic \pp{148}\c 331}
+\indexentry {0}{\plainTeX}{N}{\ic 3\c 8\c 9\c \pp{88}}
+\indexentry {1}{font families in}{N}{\ic 62}
+\indexentry {0}{pm}{C}{\ic \pp{189}\c 332}
+\indexentry {0}{pmatrix}{C}{\ic \pp{205}\c 332}
+\indexentry {0}{pmod}{C}{\ic \pp{194}\c 332}
+\indexentry {0}{poetry, typesetting}{N}{\ic 122}
+\indexentry {0}{point}{N}{\ic 60}
+\indexentry {0}{postdisplaypenalty}{C}{\ic \pp{138}\c 332}
+\indexentry {0}{pound sterling}{N}{\ic 98}
+\indexentry {0}{Pr}{C}{\ic \pp{193}\c 332}
+\indexentry {0}{preamble}{N}{\ic \pp{45}\c 178\c 179}
+\indexentry {0}{prec}{C}{\ic \pp{190}\c 191\c 332}
+\indexentry {0}{preceq}{C}{\ic \pp{190}\c 191\c 332}
+\indexentry {0}{predisplaypenalty}{C}{\ic \pp{138}\c 332}
+\indexentry {0}{predisplaysize}{C}{\ic \pp{216}\c 332}
+\indexentry {0}{preloaded}{N}{\ic 65}
+\indexentry {0}{pretolerance}{C}{\ic \pp{123}\c 332}
+\indexentry {0}{prevdepth}{C}{\ic 133\c \pp{134}\c 332}
+\indexentry {0}{prevgraf}{C}{\ic \pp{120}\c 332}
+\indexentry {0}{previewer}{N}{\ic 8}
+\indexentry {0}{prime}{C}{\ic \pp{188}\c 332}
+\indexentry {0}{primitive}{N}{\ic \pp{88}}
+\indexentry {1}{command}{N}{\ic 3\c 48\c 313}
+\indexentry {1}{control sequence}{N}{\ic 57}
+\indexentry {0}{printable characters}{N}{\ic 49}
+\indexentry {0}{printers}{N}{\ic 8}
+\indexentry {0}{proclaim}{C}{\ic \pp{131}\c 332}
+\indexentry {0}{prod}{C}{\ic \pp{194}\c 332}
+\indexentry {0}{programming features}{N}{\ic 221}
+\indexentry {0}{propto}{C}{\ic \pp{190}\c 332}
+\indexentry {0}{psi}{C}{\ic \pp{187}\c 332}
+\indexentry {0}{Psi}{C}{\ic \pp{187}\c 332}
+\indexentry {0}{punctuation}{N}{\ic 13\c 22}
+\indexentry {0}{punctuation in math formulas}{N}{\ic 196}
+\indexentry {0}{\pxlfile}{N}{\ic 8}
+\indexgroup Q
+\indexentry {0}{qquad}{C}{\ic \pp{154}\c 332}
+\indexentry {0}{quad}{C}{\ic \pp{154}\c 332}
+\indexentry {0}{question mark}{N}{\ic 13}
+\indexentry {0}{quotation marks}{N}{\ic 14\c 22}
+\indexgroup R
+\indexentry {0}{radical}{C}{\ic \pp{207}\c 332}
+\indexentry {0}{ragged left}{N}{\ic 71\c 115}
+\indexentry {0}{ragged right}{N}{\ic 71\c 116}
+\indexentry {0}{raggedbottom}{C}{\ic \pp{137}\c 332}
+\indexentry {0}{raggedright}{C}{\ic 71\c \pp{116}\c 269\c 332}
+\indexentry {0}{raise}{C}{\ic 52\c \pp{166}\c 332}
+\indexentry {0}{rangle}{C}{\ic 59\c \pp{191}\c 332}
+\indexentry {0}{rbrace}{C}{\ic 59\c \pp{191}\c 332}
+\indexentry {0}{rbrack}{C}{\ic 59\c \pp{98}\c \pp{191}\c 332}
+\indexentry {0}{rceil}{C}{\ic 59\c \pp{191}\c 332}
+\indexentry {0}{Re}{C}{\ic \pp{188}\c 332}
+\indexentry {0}{read}{C}{\ic 62\c \pp{248}\c 332}
+\indexentry {0}{reading a file}{N}{\ic 248}
+\indexentry {0}{readreffile}{C}{\ic \pp{303}}
+\indexentry {0}{readtocfile}{C}{\ic \pp{301}}
+\indexentry {0}{recent contributions}{N}{\ic 84}
+\indexentry {0}{recursive macros}{N}{\see{macros, recursive}}
+\indexentry {0}{reference mark}{N}{\ic 145}
+\indexentry {0}{reference point}{N}{\ic 51--52\c \pp{88}}
+\indexentry {0}{\<register>}{N}{\ic 4}
+\indexentry {0}{registers}{N}{\ic \pp{89--90}\c 242--246}
+\indexentry {1}{arithmetic in}{N}{\ic 245--246}
+\indexentry {1}{assignment to}{N}{\ic 49}
+\indexentry {1}{parameters as}{N}{\ic 4\c 12\c 88}
+\indexentry {1}{reserving}{N}{\ic 244--245}
+\indexentry {1}{with \b\tt\\the\e}{N}{\ic 234}
+\indexentry {0}{relations}{N}{\ic 126\c 190--191}
+\indexentry {1}{putting formulas above}{N}{\ic 202}
+\indexentry {0}{relax}{C}{\ic 9\c \pp{241}\c 332}
+\indexentry {0}{relpenalty}{C}{\ic \pp{126}\c 332}
+\indexentry {0}{repeat}{C}{\ic \pp{240}\c 333}
+\indexentry {0}{repeated actions}{N}{\ic 240--241}
+\indexentry {0}{resident fonts}{N}{\ic 222}
+\indexentry {0}{restricted horizontal mode}{N}{\ic 69\c 81}
+\indexentry {0}{restricted mode}{N}{\ic \pp{90}}
+\indexentry {1}{horizontal}{N}{\ic 272}
+\indexentry {0}{result file}{N}{\ic 62}
+\indexentry {0}{revision bars}{N}{\ic \r7\c 30}
+\indexentry {0}{rfloor}{C}{\ic 59\c \pp{191}\c 333}
+\indexentry {0}{rgroup}{C}{\ic \pp{204}\c 333}
+\indexentry {0}{rho}{C}{\ic \pp{187}\c 333}
+\indexentry {0}{right}{C}{\ic 58\c \pp{204}\c 333}
+\indexentry {0}{right margin}{N}{\ic 66}
+\indexentry {0}{rightarrow}{C}{\ic \pp{192}\c 333}
+\indexentry {0}{Rightarrow}{C}{\ic \pp{192}\c 333}
+\indexentry {0}{rightarrowfill}{C}{\ic \pp{175}\c 333}
+\indexentry {0}{rightharpoondown}{C}{\ic \pp{192}\c 333}
+\indexentry {0}{rightharpoonup}{C}{\ic \pp{192}\c 333}
+\indexentry {0}{righthyphenmin}{C}{\ic 18\c \pp{128}\c 333}
+\indexentry {0}{rightleftharpoons}{C}{\ic \pp{192}\c 333}
+\indexentry {0}{rightline}{C}{\ic 68\c \pp{108}\c 333}
+\indexentry {0}{rightskip}{C}{\ic 71\c \pp{115}\c 333}
+\indexentry {0}{rlap}{C}{\ic \pp{109}\c 333}
+\indexentry {0}{rm}{C}{\ic \pp{103}\c 333}
+\indexentry {0}{rmoustache}{C}{\ic \pp{212}\c 333}
+\indexentry {0}{Roman numerals}{N}{\ic 224}
+\indexentry {0}{romannumeral}{C}{\ic 83\c \pp{224}\c 333}
+\indexentry {0}{root}{C}{\ic \pp{207}\c 333}
+\indexentry {0}{row}{N}{\ic 179}
+\indexentry {0}{rq}{C}{\ic \pp{98}\c 333}
+\indexentry {0}{rules}{N}{\ic \pp{90--91}\c 172--173\c 273}
+\indexentry {1}{thickness of}{N}{\ic 292}
+\indexentry {0}{running \TeX}{N}{\ic 9\c 252--253}
+\indexgroup S
+\indexentry {0}{\char `\S}{C}{\ic \pp{98}\c 333}
+\indexentry {0}{sb}{C}{\ic \pp{197}\c 333}
+\indexentry {0}{scale factor}{N}{\ic 223}
+\indexentry {0}{scaled point}{N}{\ic 60}
+\indexentry {0}{script size}{N}{\ic 62\c \pp{91}}
+\indexentry {0}{script style}{N}{\ic 93\c 197\c 198\c 210}
+\indexentry {0}{scriptfont}{C}{\ic 62\c \pp{210}\c 333}
+\indexentry {0}{scriptscript size}{N}{\ic 62\c \pp{91}}
+\indexentry {0}{scriptscript style}{N}{\ic 93\c 197\c 198\c 210}
+\indexentry {0}{scriptscriptfont}{C}{\ic 62\c \pp{210}\c 333}
+\indexentry {0}{scriptscriptstyle}{C}{\ic 93\c 197\c \pp{198}\c 333}
+\indexentry {0}{scriptspace}{C}{\ic \pp{218}\c 333}
+\indexentry {0}{scriptstyle}{C}{\ic 93\c 197\c \pp{198}\c 333}
+\indexentry {0}{scrollmode}{C}{\ic \pp{252}\c 333}
+\indexentry {0}{searrow}{C}{\ic \pp{192}\c 333}
+\indexentry {0}{sec}{C}{\ic \pp{193}\c 333}
+\indexentry {0}{section headings}{N}{\ic 129}
+\indexentry {0}{setbox}{C}{\ic \pp{164}\c 333}
+\indexentry {0}{setlanguage}{C}{\ic 18\c 95\c \pp{128}\c 334}
+\indexentry {0}{setminus}{C}{\ic \pp{189}\c 334}
+\indexentry {0}{settabs}{C}{\ic 44--45\c \pp{176}\c 334}
+\indexentry {0}{setuplistinghook}{C}{\ic \pp{300}}
+\indexentry {0}{sevenbf}{C}{\ic \pp{102}\c 334}
+\indexentry {0}{seveni}{C}{\ic \pp{102}\c 334}
+\indexentry {0}{sevenrm}{C}{\ic \pp{102}\c 334}
+\indexentry {0}{sevensy}{C}{\ic \pp{102}\c 334}
+\indexentry {0}{sfcode}{C}{\ic \pp{107}\c 334}
+\indexentry {0}{shape file}{N}{\ic 8\c 65\c 78}
+\indexentry {0}{sharp}{C}{\ic \pp{188}\c 334}
+\indexentry {0}{shipout}{C}{\ic 63\c 84\c \pp{148}\c 260\c 334}
+\indexentry {1}{{\tt\\count} registers displayed at}{N}{\ic 142}
+\indexentry {0}{show}{C}{\ic \pp{253}\c 280\c 334}
+\indexentry {0}{showbox}{C}{\ic \pp{253}\c 256\c 261\c 334}
+\indexentry {0}{showboxbreadth}{C}{\ic 254\c 258\c \pp{261}\c 334}
+\indexentry {0}{showboxdepth}{C}{\ic 254\c 258\c \pp{261}\c 334}
+\indexentry {0}{showhyphens}{C}{\ic \pp{128}\c 334}
+\indexentry {0}{showlists}{C}{\ic \pp{253}\c 256\c 261\c 334}
+\indexentry {0}{showthe}{C}{\ic 90\c \pp{253}\c 334}
+\indexentry {0}{shrink}{N}{\ic 66--68\c \pp{91}}
+\indexentry {0}{sigma}{C}{\ic \pp{187}\c 334}
+\indexentry {0}{Sigma}{C}{\ic \pp{187}\c 194\c 334}
+\indexentry {0}{sim}{C}{\ic \pp{190}\c 191\c 334}
+\indexentry {0}{simeq}{C}{\ic \pp{190}\c 191\c 334}
+\indexentry {0}{sin}{C}{\ic \pp{193}\c 334}
+\indexentry {0}{singlecolumn}{C}{\ic \pp{309}}
+\indexentry {0}{sinh}{C}{\ic \pp{193}\c 334}
+\indexentry {0}{skew}{C}{\ic \pp{212}\c 334}
+\indexentry {0}{skewchar}{C}{\ic \pp{213}\c 234\c 334}
+\indexentry {0}{skip}{C}{\ic \pp{242}\c 246\c 334}
+\indexentry {0}{skip registers}{N}{\ic 243}
+\indexentry {1}{reserved by \b\tt\\newskip\e}{N}{\ic 244}
+\indexentry {0}{skipdef}{C}{\ic \pp{245}\c 334}
+\indexentry {0}{sl}{C}{\ic \pp{103}\c 334}
+\indexentry {0}{slash}{C}{\ic 74\c \pp{122}\c 334}
+\indexentry {0}{slfam}{C}{\ic \pp{210}\c 334}
+\indexentry {0}{smallbreak}{C}{\ic \pp{137}\c 334}
+\indexentry {0}{smallint}{C}{\ic \pp{194}\c 334}
+\indexentry {0}{smallskip}{C}{\ic 137\c \pp{154}\c 334}
+\indexentry {0}{smallskipamount}{C}{\ic \pp{155}\c 335}
+\indexentry {0}{smash}{C}{\ic \pp{169}\c 335}
+\indexentry {0}{smile}{C}{\ic \pp{190}\c 335}
+\indexentry {0}{solidus}{N}{\ic 74\c 122}
+\indexentry {0}{source file}{N}{\ic 62}
+\indexentry {0}{sp}{C}{\ic \pp{197}\c 335}
+\indexentry {0}{space}{N}{\ic \pp{91--92}}
+\indexentry {1}{in math formulas}{N}{\ic 214--216}
+\indexentry {1}{lost}{N}{\ic 270}
+\indexentry {1}{producing}{N}{\ic 153--159}
+\indexentry {1}{unwanted}{N}{\ic 270--271}
+\indexentry {0}{space}{C}{\ic \pp{105}\c 281\c 335}
+\indexentry {0}{space characters}{N}{\ic 22\c 293}
+\indexentry {1}{category code of}{N}{\ic 53}
+\indexentry {0}{space factor}{N}{\ic 107}
+\indexentry {0}{spacefactor}{C}{\ic \pp{107}\c 335}
+\indexentry {0}{spaces}{N}{\ic 12--13}
+\indexentry {1}{interword}{N}{\ic 66\c 104--108}
+\indexentry {1}{visible}{N}{\ic \pp{3}}
+\indexentry {0}{spaceskip}{C}{\ic \pp{107}\c 335}
+\indexentry {0}{spacesub}{C}{\ic \pp{293}}
+\indexentry {0}{spacing}{N}{}
+\indexentry {1}{adjusting with kerns}{N}{\ic 71}
+\indexentry {1}{interline}{N}{\ic 28}
+\indexentry {0}{spadesuit}{C}{\ic \pp{188}\c 335}
+\indexentry {0}{span}{C}{\ic \pp{181}\c 335}
+\indexentry {0}{special}{C}{\ic 95\c \pp{250}\c 335}
+\indexentry {0}{special characters}{N}{\ic 98}
+\indexentry {0}{special symbols}{N}{\ic 62\c 97}
+\indexentry {0}{Spivak, Michael~D.}{N}{\ic 18}
+\indexentry {0}{splitbotmark}{C}{\ic 80\c \pp{144}\c 335}
+\indexentry {0}{splitfirstmark}{C}{\ic 80\c \pp{144}\c 335}
+\indexentry {0}{splitmaxdepth}{C}{\ic \pp{150}\c 335}
+\indexentry {0}{splittopskip}{C}{\ic \pp{150}\c 335}
+\indexentry {0}{sqcap}{C}{\ic \pp{189}\c 335}
+\indexentry {0}{sqcup}{C}{\ic \pp{189}\c 335}
+\indexentry {0}{sqrt}{C}{\ic \pp{206}\c 335}
+\indexentry {0}{sqsubseteq}{C}{\ic \pp{190}\c 191\c 335}
+\indexentry {0}{sqsupseteq}{C}{\ic \pp{190}\c 191\c 335}
+\indexentry {0}{ss}{C}{\ic \pp{97}\c 335}
+\indexentry {0}{stacking subformulas}{N}{\ic 200--202}
+\indexentry {0}{star}{C}{\ic \pp{189}\c 335}
+\indexentry {0}{stomach}{N}{\ic 16\c 46\c \pp{47}\seealso{\anatomy}}
+\indexentry {0}{stretch}{N}{\ic 66--68\c \pp{92}}
+\indexentry {0}{string}{C}{\ic \pp{226}\c 233\c 335}
+\indexentry {0}{strut}{C}{\ic 46\c 92\c \pp{167}\c 168\c 335}
+\indexentry {0}{struts}{N}{\ic \pp{92}\c 135\c 167--168}
+\indexentry {1}{in vertical alignments}{N}{\ic 179}
+\indexentry {0}{styles}{N}{\ic \pp{92--93}\c 198--199}
+\indexentry {0}{subscripts}{N}{\ic 53\c 197}
+\indexentry {0}{subset}{C}{\ic \pp{190}\c 191\c 335}
+\indexentry {0}{subseteq}{C}{\ic \pp{190}\c 191\c 335}
+\indexentry {0}{succ}{C}{\ic \pp{190}\c 191\c 335}
+\indexentry {0}{succeq}{C}{\ic \pp{190}\c 191\c 335}
+\indexentry {0}{sum}{C}{\ic \pp{194}\c 335}
+\indexentry {0}{sup}{C}{\ic \pp{193}\c 335}
+\indexentry {0}{supereject}{C}{\ic \pp{137}\c 335}
+\indexentry {0}{superscripts}{N}{\ic 53\c 197}
+\indexentry {0}{supset}{C}{\ic \pp{190}\c 191\c 335}
+\indexentry {0}{supseteq}{C}{\ic \pp{190}\c 191\c 335}
+\indexentry {0}{surd}{C}{\ic \pp{188}\c 336}
+\indexentry {0}{swarrow}{C}{\ic \pp{192}\c 336}
+\indexgroup T
+\indexentry {0}{\char `\t}{C}{\ic \pp{100}\c 336}
+\indexentry {0}{tabalign}{C}{\ic \pp{176}\c 336}
+\indexentry {0}{tabbing alignments}{N}{\ic 176--177}
+\indexentry {0}{table of contents}{N}{\ic 301}
+\indexentry {0}{tables}{N}{\ic 44--46\seealso{alignments}}
+\indexentry {0}{tabs}{N}{\ic 53\c 176}
+\indexentry {0}{tabskip}{C}{\ic 46\c \pp{184}\c 336}
+\indexentry {0}{tan}{C}{\ic \pp{193}\c 336}
+\indexentry {0}{tanh}{C}{\ic \pp{193}\c 336}
+\indexentry {0}{tau}{C}{\ic \pp{187}\c 336}
+\indexentry {0}{template}{N}{\ic \pp{45}\c 178--182}
+\indexentry {0}{tenbf}{C}{\ic \pp{102}\c 336}
+\indexentry {0}{tenex}{C}{\ic \pp{102}\c 336}
+\indexentry {0}{teni}{C}{\ic \pp{102}\c 336}
+\indexentry {0}{tenit}{C}{\ic \pp{102}\c 336}
+\indexentry {0}{tenrm}{C}{\ic \pp{102}\c 336}
+\indexentry {0}{tensl}{C}{\ic \pp{102}\c 336}
+\indexentry {0}{tensy}{C}{\ic \pp{102}\c 336}
+\indexentry {0}{tentt}{C}{\ic \pp{102}\c 336}
+\indexentry {0}{terminal}{N}{\ic 254}
+\indexentry {0}{testfileexistence}{C}{\ic \pp{295}}
+\indexentry {0}{TeX}{C}{\ic \pp{98}\c 336}
+\indexentry {0}{\texbook}{N}{\ic \r8\c 43}
+\indexentry {0}{\TeXMeX}{N}{\ic \pp{93}}
+\indexentry {0}{text editor}{N}{\ic 7}
+\indexentry {0}{text math}{N}{\ic 16\c \pp{93}}
+\indexentry {0}{text math mode}{N}{\ic 80\c 81}
+\indexentry {0}{text size}{N}{\ic 62\c \pp{93}}
+\indexentry {0}{text style}{N}{\ic 93\c 194\c 198\c 210}
+\indexentry {0}{textfont}{C}{\ic 62\c \pp{210}\c 336}
+\indexentry {0}{textindent}{C}{\ic \pp{112}\c 336}
+\indexentry {0}{textstyle}{C}{\ic 93\c \pp{198}\c 336}
+\indexentry {0}{\tfmfile}{N}{\ic 8\c 64\c 72\c 221}
+\indexentry {0}{the}{C}{\ic 226\c \pp{234}\c 242\c 243\c 336}
+\indexentry {0}{theorems}{N}{\ic 32\c 131}
+\indexentry {0}{theta}{C}{\ic \pp{187}\c 336}
+\indexentry {0}{Theta}{C}{\ic \pp{187}\c 336}
+\indexentry {0}{thickmuskip}{C}{\ic \pp{214}\c 336}
+\indexentry {0}{thinmuskip}{C}{\ic \pp{214}\c 336}
+\indexentry {0}{thinspace}{C}{\ic \pp{153}\c 336}
+\indexentry {0}{tie}{N}{\ic 13\c 74\c 105}
+\indexentry {0}{tie-after accent}{N}{\ic 100}
+\indexentry {0}{tilde}{C}{\ic \pp{199}\c 336}
+\indexentry {0}{tilde accent}{N}{\ic 100\c 199}
+\indexentry {0}{time}{C}{\ic \pp{224}\c 297\c 336}
+\indexentry {0}{time of day}{N}{\ic 224\c 297}
+\indexentry {0}{times}{C}{\ic \pp{189}\c 336}
+\indexentry {0}{timestamp}{C}{\ic \pp{297}}
+\indexentry {0}{timestring}{C}{\ic \pp{297}}
+\indexentry {0}{to}{C}{\ic \pp{192}\c 336}
+\indexentry {0}{<to be read again>}{T}{\ic 285}
+\indexentry {0}{token registers}{N}{\ic 89\c 243}
+\indexentry {1}{reserved by \b\tt\\newtoks\e}{N}{\ic 244}
+\indexentry {0}{tokens}{N}{\ic 16\c \pp{93}}
+\indexentry {1}{as commands}{N}{\ic 56}
+\indexentry {1}{assembled from characters}{N}{\ic 47}
+\indexentry {1}{displayed by \b\tt\\show\e}{N}{\ic 253}
+\indexentry {1}{passed to \TeX's stomach}{N}{\ic 47}
+\indexentry {1}{showing the meaning of}{N}{\ic 226}
+\indexentry {0}{toks}{C}{\ic \pp{242}\c 336}
+\indexentry {0}{toksdef}{C}{\ic \pp{245}\c 336}
+\indexentry {0}{tokstostring}{C}{\ic \pp{292}}
+\indexentry {0}{tolerance}{C}{\ic \pp{123}\c 124\c 336}
+\indexentry {0}{top}{C}{\ic \pp{188}\c 336}
+\indexentry {0}{topglue}{C}{\ic 18\c \pp{156}\c 268\c 336}
+\indexentry {0}{topinsert}{C}{\ic 70\c \pp{146}\c 147\c 336}
+\indexentry {0}{topmark}{C}{\ic 79\c \pp{144}\c 336}
+\indexentry {0}{topskip}{C}{\ic \pp{141}\c 150\c 336}
+\indexentry {0}{tracing}{N}{\ic 253--261}
+\indexentry {0}{tracingall}{C}{\ic \pp{261}\c 337}
+\indexentry {0}{tracingboxes}{C}{\ic \pp{292}}
+\indexentry {0}{tracingcommands}{C}{\ic \pp{257}\c 337}
+\indexentry {0}{tracinglostchars}{C}{\ic \pp{257}\c 337}
+\indexentry {0}{tracingmacros}{C}{\ic \pp{258}\c 337}
+\indexentry {0}{tracingonline}{C}{\ic 254\c \pp{256}\c 257\c 258\c 259\c 260\c 261\c 337}
+\indexentry {0}{tracingoutput}{C}{\ic \pp{258}\c 261\c 337}
+\indexentry {0}{tracingpages}{C}{\ic \pp{259}\c 337}
+\indexentry {0}{tracingparagraphs}{C}{\ic \pp{259}\c 337}
+\indexentry {0}{tracingrestores}{C}{\ic \pp{260}\c 337}
+\indexentry {0}{tracingstats}{C}{\ic \pp{260}\c 337}
+\indexentry {0}{triangle}{C}{\ic \pp{188}\c 337}
+\indexentry {0}{triangleleft}{C}{\ic \pp{189}\c 337}
+\indexentry {0}{triangleright}{C}{\ic \pp{189}\c 337}
+\indexentry {0}{true}{T}{\ic 78}
+\indexentry {0}{tt}{C}{\ic \pp{103}\c 337}
+\indexentry {0}{ttfam}{C}{\ic \pp{210}\c 337}
+\indexentry {0}{ttraggedright}{C}{\ic \pp{116}\c 337}
+\indexentry {0}{\TUG}{N}{\ic 19}
+\indexentry {0}{TUGBoat}{N}{\ic 19}
+\indexentry {0}{type styles}{N}{\ic 103\c 210}
+\indexentry {0}{typewriter font}{N}{\ic 109}
+\indexgroup U
+\indexentry {0}{\char `\u}{C}{\ic \pp{100}\c 337}
+\indexentry {0}{uccode}{C}{\ic \pp{103}\c 337}
+\indexentry {0}{uchyph}{C}{\ic \pp{128}\c 337}
+\indexentry {0}{umlaut accent}{N}{\ic 100}
+\indexentry {0}{unbox}{C}{\ic 172}
+\indexentry {0}{uncatcodespecials}{C}{\ic \pp{291}}
+\indexentry {0}{undelimited arguments}{N}{\ic 48}
+\indexentry {0}{underbar}{C}{\ic \pp{163}\c 337}
+\indexentry {0}{underbrace}{C}{\ic \pp{202}\c 212\c 337}
+\indexentry {0}{underdot accent}{N}{\ic 100}
+\indexentry {0}{underfull boxes}{N}{\ic 268--270}
+\indexentry {0}{underline}{C}{\ic \pp{202}\c 337}
+\indexentry {0}{unhbox}{C}{\ic \pp{165}\c 337}
+\indexentry {0}{unhcopy}{C}{\ic \pp{165}\c 337}
+\indexentry {0}{units of measure}{N}{\ic 60\c 61\c \pp{93}}
+\indexentry {0}{unkern}{C}{\ic \pp{172}\c 337}
+\indexentry {0}{unnumberedlist}{C}{\ic \pp{298}}
+\indexentry {0}{unpenalty}{C}{\ic \pp{172}\c 337}
+\indexentry {0}{unskip}{C}{\ic \pp{172}\c 337}
+\indexentry {0}{unvbox}{C}{\ic \pp{165}\c 337}
+\indexentry {0}{unvcopy}{C}{\ic \pp{165}\c 337}
+\indexentry {0}{unwanted space}{N}{\ic 12}
+\indexentry {0}{uparrow}{C}{\ic 59\c \pp{192}\c 338}
+\indexentry {0}{Uparrow}{C}{\ic 59\c \pp{192}\c 338}
+\indexentry {0}{upbracefill}{C}{\ic \pp{211}\c 338}
+\indexentry {0}{updownarrow}{C}{\ic 59\c \pp{192}\c 338}
+\indexentry {0}{Updownarrow}{C}{\ic 59\c \pp{192}\c 338}
+\indexentry {0}{uplus}{C}{\ic \pp{189}\c 338}
+\indexentry {0}{upper limits}{N}{\ic 197}
+\indexentry {0}{uppercase}{N}{}
+\indexentry {1}{conversion to}{N}{\ic 103--104}
+\indexentry {0}{uppercase}{C}{\ic \pp{104}\c 338}
+\indexentry {0}{upsilon}{C}{\ic \pp{187}\c 338}
+\indexentry {0}{Upsilon}{C}{\ic \pp{187}\c 338}
+\indexgroup V
+\indexentry {0}{\char `\v}{C}{\ic \pp{100}\c 338}
+\indexentry {0}{vadjust}{C}{\ic \pp{120}\c 266\c 267\c 338}
+\indexentry {0}{valign}{C}{\ic 46\c \pp{179}\c 338}
+\indexentry {1}{grouping for}{N}{\ic 16}
+\indexentry {1}{inherently horizontal}{N}{\ic 94}
+\indexentry {1}{used in {\tt\\makecolumns}}{N}{\ic 308}
+\indexentry {0}{varepsilon}{C}{\ic \pp{187}\c 338}
+\indexentry {0}{varphi}{C}{\ic \pp{187}\c 338}
+\indexentry {0}{varpi}{C}{\ic \pp{187}\c 338}
+\indexentry {0}{varrho}{C}{\ic \pp{187}\c 338}
+\indexentry {0}{varsigma}{C}{\ic \pp{187}\c 338}
+\indexentry {0}{vartheta}{C}{\ic \pp{187}\c 338}
+\indexentry {0}{vbadness}{C}{\ic \pp{170}\c 338}
+\indexentry {0}{vbox}{C}{\ic 51\c 52\c 94\c \pp{161}\c 338}
+\indexentry {1}{fixing page breaks with}{N}{\ic 265}
+\indexentry {1}{overfull box from}{N}{\ic 269--270}
+\indexentry {0}{vboxes}{N}{\ic 51\c \pp{94}}
+\indexentry {1}{interline glue for}{N}{\ic 133}
+\indexentry {1}{testing for}{N}{\ic 238}
+\indexentry {1}{vertical mode for}{N}{\ic 94}
+\indexentry {1}{width determined by \b\tt\\hsize\e}{N}{\ic 114}
+\indexentry {0}{vcenter}{C}{\ic \pp{213}\c 297\c 338}
+\indexentry {0}{vdash}{C}{\ic \pp{190}\c 338}
+\indexentry {0}{vdots}{C}{\ic \pp{203}\c 338}
+\indexentry {0}{vec}{C}{\ic \pp{199}\c 338}
+\indexentry {0}{vector accent}{N}{\ic 199}
+\indexentry {0}{vee}{C}{\ic \pp{189}\c 338}
+\indexentry {0}{verbatim text}{N}{\ic 277}
+\indexentry {0}{verse, typesetting}{N}{\ic 122}
+\indexentry {0}{version number}{N}{\ic 225}
+\indexentry {0}{vert}{C}{\ic 59\c \pp{188}\c 338}
+\indexentry {0}{Vert}{C}{\ic 59\c \pp{188}\c 189\c 338}
+\indexentry {0}{vertical glue}{N}{\ic 155\c 156}
+\indexentry {0}{vertical lists}{N}{\ic 51\c 66\c \pp{94}}
+\indexentry {1}{can't contain horizontal commands}{N}{\ic 94}
+\indexentry {1}{inserting in paragraphs}{N}{\ic 120}
+\indexentry {1}{penalties in}{N}{\ic 88}
+\indexentry {1}{rule in}{N}{\ic 90}
+\indexentry {1}{vboxes formed from}{N}{\ic 94}
+\indexentry {0}{vertical mode}{N}{\ic 81\c \pp{94}}
+\indexentry {1}{rules in}{N}{\ic 173}
+\indexentry {1}{testing for}{N}{\ic 238}
+\indexentry {0}{vertical rules}{N}{\ic 90--91\c 172--173}
+\indexentry {0}{vertical skip}{N}{\ic 155}
+\indexentry {0}{vertical space}{N}{\ic 154--159}
+\indexentry {1}{reserving at top of page}{N}{\ic 267}
+\indexentry {0}{vfil}{C}{\ic \pp{157}\c 270\c 338}
+\indexentry {1}{filling a vbox}{N}{\ic 162}
+\indexentry {1}{needed with {\tt\\eject}}{N}{\ic 137}
+\indexentry {0}{vfill}{C}{\ic \pp{157}\c 266\c 338}
+\indexentry {0}{vfilneg}{C}{\ic \pp{159}\c 338}
+\indexentry {0}{vfootnote}{C}{\ic \pp{145}\c 147\c 309\c 338}
+\indexentry {0}{vfuzz}{C}{\ic \pp{171}\c 269\c 338}
+\indexentry {0}{vglue}{C}{\ic \pp{156}\c 157\c 338}
+\indexentry {0}{virtex}{T}{\ic 65\c 263}
+\indexentry {0}{visible space}{N}{\ic 104}
+\indexentry {0}{voffset}{C}{\ic 79\c 86\c \pp{140}\c 274\c 339}
+\indexentry {0}{vphantom}{C}{\ic \pp{169}\c 339}
+\indexentry {0}{vrule}{C}{\ic 90--91\c \pp{172}\c 273\c 339}
+\indexentry {1}{inherently horizontal}{N}{\ic 94}
+\indexentry {0}{vsize}{C}{\ic 79\c 86\c \pp{140}\c 274\c 339}
+\indexentry {1}{set by {\tt\\magnification}}{N}{\ic 223}
+\indexentry {0}{vskip}{C}{\ic 66\c \pp{155}\c 339}
+\indexentry {0}{vsplit}{C}{\ic 144\c \pp{149}\c 339}
+\indexentry {0}{vss}{C}{\ic \pp{158}\c 269\c 339}
+\indexentry {0}{vtop}{C}{\ic 51\c 52\c 94\c \pp{161}\c 339}
+\indexgroup W
+\indexentry {0}{wd}{C}{\ic \pp{167}\c 339}
+\indexentry {0}{wedge}{C}{\ic \pp{189}\c 339}
+\indexentry {0}{whatsit}{N}{\ic \pp{94--95}\c 128}
+\indexentry {0}{whitespace, preserving}{N}{\ic 278}
+\indexentry {0}{wide hat accent}{N}{\ic 199}
+\indexentry {0}{wide tilde accent}{N}{\ic 199}
+\indexentry {0}{widehat}{C}{\ic \pp{199}\c 339}
+\indexentry {0}{widetilde}{C}{\ic \pp{199}\c 339}
+\indexentry {0}{widow line}{N}{\ic 138}
+\indexentry {0}{widowpenalty}{C}{\ic \pp{138}\c 339}
+\indexentry {0}{width}{N}{\ic 51\c \pp{95}\c 167}
+\indexentry {0}{wlog}{C}{\ic \pp{261}\c 339}
+\indexentry {1}{expanded by {\tt\\edef} rules}{N}{\ic 231}
+\indexentry {0}{words run together}{N}{\ic 270}
+\indexentry {0}{wp}{C}{\ic \pp{188}\c 339}
+\indexentry {0}{wr}{C}{\ic \pp{189}\c 339}
+\indexentry {0}{write}{C}{\ic \pp{249}\c 339}
+\indexentry {1}{expanded by {\tt\\edef} rules}{N}{\ic 231}
+\indexentry {1}{expanded during {\tt\\shipout}}{N}{\ic 148}
+\indexentry {1}{expansion of {\tt\\'\it c} in}{N}{\ic 82}
+\indexentry {1}{output stream for}{N}{\ic 63}
+\indexentry {1}{whatsit produced by}{N}{\ic 95}
+\indexentry {1}{with {\tt\\immediate}}{N}{\ic 250}
+\indexentry {1}{writing \b\tt\%\e\ with}{N}{\ic 292}
+\indexentry {0}{<write>}{T}{\ic 288}
+\indexentry {0}{writetocentry}{C}{\ic \pp{301}}
+\indexentry {0}{writing a file}{N}{\ic 249}
+\indexgroup X
+\indexentry {0}{xdef}{C}{\ic 66\c 228\c \pp{231}\c 339}
+\indexentry {0}{xi}{C}{\ic \pp{187}\c 339}
+\indexentry {0}{Xi}{C}{\ic \pp{187}\c 339}
+\indexentry {0}{xleaders}{C}{\ic 72--73\c \pp{174}\c 339}
+\indexentry {0}{xrdef}{C}{\ic \pp{302}}
+\indexentry {0}{xref}{C}{\ic \pp{302}}
+\indexentry {0}{xrefn}{C}{\ic \pp{302}}
+\indexentry {0}{xspaceskip}{C}{\ic \pp{107}\c 339}
+\indexgroup Y
+\indexentry {0}{year}{C}{\ic \pp{225}\c 297\c 339}
+\indexgroup Z
+\indexentry {0}{Zapf, Hermann}{N}{\ic 34}
+\indexentry {0}{zeta}{C}{\ic \pp{187}\c 339}
diff --git a/Master/texmf-dist/doc/plain/impatient/concepts.tex b/Master/texmf-dist/doc/plain/impatient/concepts.tex
index ad5f4cc42d2..2b386753455 100644
--- a/Master/texmf-dist/doc/plain/impatient/concepts.tex
+++ b/Master/texmf-dist/doc/plain/impatient/concepts.tex
@@ -1,5 +1,5 @@
% This is part of the book TeX for the Impatient.
-% Copyright (C) 2003 Paul W. Abrahams, Kathryn A. Hargreaves, Karl Berry.
+% Copyright (C) 2003, 2014 Paul W. Abrahams, Kathryn A. Hargreaves, Karl Berry.
% See file fdl.tex for copying conditions.
\input macros
@@ -2075,8 +2075,8 @@ of the inherently vertical commands.
{\tighten
You should be aware of a subtle but important property of restricted
-horizontal mode: \emph{you can't enter restricted horizontal mode
-when you're in ordinary horizontal mode}. What this means in practice is that
+horizontal mode: \emph{you can't enter ordinary horizontal mode
+when you're in restricted horizontal mode}. What this means in practice is that
when \TeX\ is assembling an hbox it
won't handle paragraph-like text, i.e., text for which it does
\refterm{line breaking}. You can get
diff --git a/Master/texmf-dist/doc/plain/impatient/configure b/Master/texmf-dist/doc/plain/impatient/configure
new file mode 100644
index 00000000000..6d33a2f9a01
--- /dev/null
+++ b/Master/texmf-dist/doc/plain/impatient/configure
@@ -0,0 +1,3172 @@
+#! /bin/sh
+# Guess values for system-dependent variables and create Makefiles.
+# Generated by GNU Autoconf 2.69 for teximpatient 2.4.
+#
+# Report bugs to <impatient@tug.org>.
+#
+#
+# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
+#
+#
+# This configure script is free software; the Free Software Foundation
+# gives unlimited permission to copy, distribute and modify it.
+## -------------------- ##
+## M4sh Initialization. ##
+## -------------------- ##
+
+# Be more Bourne compatible
+DUALCASE=1; export DUALCASE # for MKS sh
+if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
+ emulate sh
+ NULLCMD=:
+ # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
+ # is contrary to our usage. Disable this feature.
+ alias -g '${1+"$@"}'='"$@"'
+ setopt NO_GLOB_SUBST
+else
+ case `(set -o) 2>/dev/null` in #(
+ *posix*) :
+ set -o posix ;; #(
+ *) :
+ ;;
+esac
+fi
+
+
+as_nl='
+'
+export as_nl
+# Printing a long string crashes Solaris 7 /usr/bin/printf.
+as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
+as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
+as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
+# Prefer a ksh shell builtin over an external printf program on Solaris,
+# but without wasting forks for bash or zsh.
+if test -z "$BASH_VERSION$ZSH_VERSION" \
+ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
+ as_echo='print -r --'
+ as_echo_n='print -rn --'
+elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
+ as_echo='printf %s\n'
+ as_echo_n='printf %s'
+else
+ if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
+ as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
+ as_echo_n='/usr/ucb/echo -n'
+ else
+ as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
+ as_echo_n_body='eval
+ arg=$1;
+ case $arg in #(
+ *"$as_nl"*)
+ expr "X$arg" : "X\\(.*\\)$as_nl";
+ arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
+ esac;
+ expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
+ '
+ export as_echo_n_body
+ as_echo_n='sh -c $as_echo_n_body as_echo'
+ fi
+ export as_echo_body
+ as_echo='sh -c $as_echo_body as_echo'
+fi
+
+# The user is always right.
+if test "${PATH_SEPARATOR+set}" != set; then
+ PATH_SEPARATOR=:
+ (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
+ (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
+ PATH_SEPARATOR=';'
+ }
+fi
+
+
+# IFS
+# We need space, tab and new line, in precisely that order. Quoting is
+# there to prevent editors from complaining about space-tab.
+# (If _AS_PATH_WALK were called with IFS unset, it would disable word
+# splitting by setting IFS to empty value.)
+IFS=" "" $as_nl"
+
+# Find who we are. Look in the path if we contain no directory separator.
+as_myself=
+case $0 in #((
+ *[\\/]* ) as_myself=$0 ;;
+ *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+ IFS=$as_save_IFS
+ test -z "$as_dir" && as_dir=.
+ test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
+ done
+IFS=$as_save_IFS
+
+ ;;
+esac
+# We did not find ourselves, most probably we were run as `sh COMMAND'
+# in which case we are not to be found in the path.
+if test "x$as_myself" = x; then
+ as_myself=$0
+fi
+if test ! -f "$as_myself"; then
+ $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
+ exit 1
+fi
+
+# Unset variables that we do not need and which cause bugs (e.g. in
+# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1"
+# suppresses any "Segmentation fault" message there. '((' could
+# trigger a bug in pdksh 5.2.14.
+for as_var in BASH_ENV ENV MAIL MAILPATH
+do eval test x\${$as_var+set} = xset \
+ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
+done
+PS1='$ '
+PS2='> '
+PS4='+ '
+
+# NLS nuisances.
+LC_ALL=C
+export LC_ALL
+LANGUAGE=C
+export LANGUAGE
+
+# CDPATH.
+(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
+
+# Use a proper internal environment variable to ensure we don't fall
+ # into an infinite loop, continuously re-executing ourselves.
+ if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then
+ _as_can_reexec=no; export _as_can_reexec;
+ # We cannot yet assume a decent shell, so we have to provide a
+# neutralization value for shells without unset; and this also
+# works around shells that cannot unset nonexistent variables.
+# Preserve -v and -x to the replacement shell.
+BASH_ENV=/dev/null
+ENV=/dev/null
+(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
+case $- in # ((((
+ *v*x* | *x*v* ) as_opts=-vx ;;
+ *v* ) as_opts=-v ;;
+ *x* ) as_opts=-x ;;
+ * ) as_opts= ;;
+esac
+exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"}
+# Admittedly, this is quite paranoid, since all the known shells bail
+# out after a failed `exec'.
+$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2
+as_fn_exit 255
+ fi
+ # We don't want this to propagate to other subprocesses.
+ { _as_can_reexec=; unset _as_can_reexec;}
+if test "x$CONFIG_SHELL" = x; then
+ as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then :
+ emulate sh
+ NULLCMD=:
+ # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which
+ # is contrary to our usage. Disable this feature.
+ alias -g '\${1+\"\$@\"}'='\"\$@\"'
+ setopt NO_GLOB_SUBST
+else
+ case \`(set -o) 2>/dev/null\` in #(
+ *posix*) :
+ set -o posix ;; #(
+ *) :
+ ;;
+esac
+fi
+"
+ as_required="as_fn_return () { (exit \$1); }
+as_fn_success () { as_fn_return 0; }
+as_fn_failure () { as_fn_return 1; }
+as_fn_ret_success () { return 0; }
+as_fn_ret_failure () { return 1; }
+
+exitcode=0
+as_fn_success || { exitcode=1; echo as_fn_success failed.; }
+as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; }
+as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; }
+as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; }
+if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then :
+
+else
+ exitcode=1; echo positional parameters were not saved.
+fi
+test x\$exitcode = x0 || exit 1
+test -x / || exit 1"
+ as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO
+ as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO
+ eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" &&
+ test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1"
+ if (eval "$as_required") 2>/dev/null; then :
+ as_have_required=yes
+else
+ as_have_required=no
+fi
+ if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then :
+
+else
+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+as_found=false
+for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
+do
+ IFS=$as_save_IFS
+ test -z "$as_dir" && as_dir=.
+ as_found=:
+ case $as_dir in #(
+ /*)
+ for as_base in sh bash ksh sh5; do
+ # Try only shells that exist, to save several forks.
+ as_shell=$as_dir/$as_base
+ if { test -f "$as_shell" || test -f "$as_shell.exe"; } &&
+ { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then :
+ CONFIG_SHELL=$as_shell as_have_required=yes
+ if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then :
+ break 2
+fi
+fi
+ done;;
+ esac
+ as_found=false
+done
+$as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } &&
+ { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then :
+ CONFIG_SHELL=$SHELL as_have_required=yes
+fi; }
+IFS=$as_save_IFS
+
+
+ if test "x$CONFIG_SHELL" != x; then :
+ export CONFIG_SHELL
+ # We cannot yet assume a decent shell, so we have to provide a
+# neutralization value for shells without unset; and this also
+# works around shells that cannot unset nonexistent variables.
+# Preserve -v and -x to the replacement shell.
+BASH_ENV=/dev/null
+ENV=/dev/null
+(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
+case $- in # ((((
+ *v*x* | *x*v* ) as_opts=-vx ;;
+ *v* ) as_opts=-v ;;
+ *x* ) as_opts=-x ;;
+ * ) as_opts= ;;
+esac
+exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"}
+# Admittedly, this is quite paranoid, since all the known shells bail
+# out after a failed `exec'.
+$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2
+exit 255
+fi
+
+ if test x$as_have_required = xno; then :
+ $as_echo "$0: This script requires a shell more modern than all"
+ $as_echo "$0: the shells that I found on your system."
+ if test x${ZSH_VERSION+set} = xset ; then
+ $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should"
+ $as_echo "$0: be upgraded to zsh 4.3.4 or later."
+ else
+ $as_echo "$0: Please tell bug-autoconf@gnu.org and impatient@tug.org
+$0: about your system, including any error possibly output
+$0: before this message. Then install a modern shell, or
+$0: manually run the script under such a shell if you do
+$0: have one."
+ fi
+ exit 1
+fi
+fi
+fi
+SHELL=${CONFIG_SHELL-/bin/sh}
+export SHELL
+# Unset more variables known to interfere with behavior of common tools.
+CLICOLOR_FORCE= GREP_OPTIONS=
+unset CLICOLOR_FORCE GREP_OPTIONS
+
+## --------------------- ##
+## M4sh Shell Functions. ##
+## --------------------- ##
+# as_fn_unset VAR
+# ---------------
+# Portably unset VAR.
+as_fn_unset ()
+{
+ { eval $1=; unset $1;}
+}
+as_unset=as_fn_unset
+
+# as_fn_set_status STATUS
+# -----------------------
+# Set $? to STATUS, without forking.
+as_fn_set_status ()
+{
+ return $1
+} # as_fn_set_status
+
+# as_fn_exit STATUS
+# -----------------
+# Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
+as_fn_exit ()
+{
+ set +e
+ as_fn_set_status $1
+ exit $1
+} # as_fn_exit
+
+# as_fn_mkdir_p
+# -------------
+# Create "$as_dir" as a directory, including parents if necessary.
+as_fn_mkdir_p ()
+{
+
+ case $as_dir in #(
+ -*) as_dir=./$as_dir;;
+ esac
+ test -d "$as_dir" || eval $as_mkdir_p || {
+ as_dirs=
+ while :; do
+ case $as_dir in #(
+ *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
+ *) as_qdir=$as_dir;;
+ esac
+ as_dirs="'$as_qdir' $as_dirs"
+ as_dir=`$as_dirname -- "$as_dir" ||
+$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
+ X"$as_dir" : 'X\(//\)[^/]' \| \
+ X"$as_dir" : 'X\(//\)$' \| \
+ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
+$as_echo X"$as_dir" |
+ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
+ s//\1/
+ q
+ }
+ /^X\(\/\/\)[^/].*/{
+ s//\1/
+ q
+ }
+ /^X\(\/\/\)$/{
+ s//\1/
+ q
+ }
+ /^X\(\/\).*/{
+ s//\1/
+ q
+ }
+ s/.*/./; q'`
+ test -d "$as_dir" && break
+ done
+ test -z "$as_dirs" || eval "mkdir $as_dirs"
+ } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
+
+
+} # as_fn_mkdir_p
+
+# as_fn_executable_p FILE
+# -----------------------
+# Test if FILE is an executable regular file.
+as_fn_executable_p ()
+{
+ test -f "$1" && test -x "$1"
+} # as_fn_executable_p
+# as_fn_append VAR VALUE
+# ----------------------
+# Append the text in VALUE to the end of the definition contained in VAR. Take
+# advantage of any shell optimizations that allow amortized linear growth over
+# repeated appends, instead of the typical quadratic growth present in naive
+# implementations.
+if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
+ eval 'as_fn_append ()
+ {
+ eval $1+=\$2
+ }'
+else
+ as_fn_append ()
+ {
+ eval $1=\$$1\$2
+ }
+fi # as_fn_append
+
+# as_fn_arith ARG...
+# ------------------
+# Perform arithmetic evaluation on the ARGs, and store the result in the
+# global $as_val. Take advantage of shells that can avoid forks. The arguments
+# must be portable across $(()) and expr.
+if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
+ eval 'as_fn_arith ()
+ {
+ as_val=$(( $* ))
+ }'
+else
+ as_fn_arith ()
+ {
+ as_val=`expr "$@" || test $? -eq 1`
+ }
+fi # as_fn_arith
+
+
+# as_fn_error STATUS ERROR [LINENO LOG_FD]
+# ----------------------------------------
+# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
+# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
+# script with STATUS, using 1 if that was 0.
+as_fn_error ()
+{
+ as_status=$1; test $as_status -eq 0 && as_status=1
+ if test "$4"; then
+ as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
+ $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
+ fi
+ $as_echo "$as_me: error: $2" >&2
+ as_fn_exit $as_status
+} # as_fn_error
+
+if expr a : '\(a\)' >/dev/null 2>&1 &&
+ test "X`expr 00001 : '.*\(...\)'`" = X001; then
+ as_expr=expr
+else
+ as_expr=false
+fi
+
+if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
+ as_basename=basename
+else
+ as_basename=false
+fi
+
+if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
+ as_dirname=dirname
+else
+ as_dirname=false
+fi
+
+as_me=`$as_basename -- "$0" ||
+$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
+ X"$0" : 'X\(//\)$' \| \
+ X"$0" : 'X\(/\)' \| . 2>/dev/null ||
+$as_echo X/"$0" |
+ sed '/^.*\/\([^/][^/]*\)\/*$/{
+ s//\1/
+ q
+ }
+ /^X\/\(\/\/\)$/{
+ s//\1/
+ q
+ }
+ /^X\/\(\/\).*/{
+ s//\1/
+ q
+ }
+ s/.*/./; q'`
+
+# Avoid depending upon Character Ranges.
+as_cr_letters='abcdefghijklmnopqrstuvwxyz'
+as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
+as_cr_Letters=$as_cr_letters$as_cr_LETTERS
+as_cr_digits='0123456789'
+as_cr_alnum=$as_cr_Letters$as_cr_digits
+
+
+ as_lineno_1=$LINENO as_lineno_1a=$LINENO
+ as_lineno_2=$LINENO as_lineno_2a=$LINENO
+ eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" &&
+ test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || {
+ # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-)
+ sed -n '
+ p
+ /[$]LINENO/=
+ ' <$as_myself |
+ sed '
+ s/[$]LINENO.*/&-/
+ t lineno
+ b
+ :lineno
+ N
+ :loop
+ s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/
+ t loop
+ s/-\n.*//
+ ' >$as_me.lineno &&
+ chmod +x "$as_me.lineno" ||
+ { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; }
+
+ # If we had to re-execute with $CONFIG_SHELL, we're ensured to have
+ # already done that, so ensure we don't try to do so again and fall
+ # in an infinite loop. This has already happened in practice.
+ _as_can_reexec=no; export _as_can_reexec
+ # Don't try to exec as it changes $[0], causing all sort of problems
+ # (the dirname of $[0] is not the place where we might find the
+ # original and so on. Autoconf is especially sensitive to this).
+ . "./$as_me.lineno"
+ # Exit status is that of the last command.
+ exit
+}
+
+ECHO_C= ECHO_N= ECHO_T=
+case `echo -n x` in #(((((
+-n*)
+ case `echo 'xy\c'` in
+ *c*) ECHO_T=' ';; # ECHO_T is single tab character.
+ xy) ECHO_C='\c';;
+ *) echo `echo ksh88 bug on AIX 6.1` > /dev/null
+ ECHO_T=' ';;
+ esac;;
+*)
+ ECHO_N='-n';;
+esac
+
+rm -f conf$$ conf$$.exe conf$$.file
+if test -d conf$$.dir; then
+ rm -f conf$$.dir/conf$$.file
+else
+ rm -f conf$$.dir
+ mkdir conf$$.dir 2>/dev/null
+fi
+if (echo >conf$$.file) 2>/dev/null; then
+ if ln -s conf$$.file conf$$ 2>/dev/null; then
+ as_ln_s='ln -s'
+ # ... but there are two gotchas:
+ # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
+ # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
+ # In both cases, we have to default to `cp -pR'.
+ ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
+ as_ln_s='cp -pR'
+ elif ln conf$$.file conf$$ 2>/dev/null; then
+ as_ln_s=ln
+ else
+ as_ln_s='cp -pR'
+ fi
+else
+ as_ln_s='cp -pR'
+fi
+rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
+rmdir conf$$.dir 2>/dev/null
+
+if mkdir -p . 2>/dev/null; then
+ as_mkdir_p='mkdir -p "$as_dir"'
+else
+ test -d ./-p && rmdir ./-p
+ as_mkdir_p=false
+fi
+
+as_test_x='test -x'
+as_executable_p=as_fn_executable_p
+
+# Sed expression to map a string onto a valid CPP name.
+as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
+
+# Sed expression to map a string onto a valid variable name.
+as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
+
+
+test -n "$DJDIR" || exec 7<&0 </dev/null
+exec 6>&1
+
+# Name of the host.
+# hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status,
+# so uname gets run too.
+ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q`
+
+#
+# Initializations.
+#
+ac_default_prefix=/usr/local
+ac_clean_files=
+ac_config_libobj_dir=.
+LIBOBJS=
+cross_compiling=no
+subdirs=
+MFLAGS=
+MAKEFLAGS=
+
+# Identity of this package.
+PACKAGE_NAME='teximpatient'
+PACKAGE_TARNAME='teximpatient'
+PACKAGE_VERSION='2.4'
+PACKAGE_STRING='teximpatient 2.4'
+PACKAGE_BUGREPORT='impatient@tug.org'
+PACKAGE_URL=''
+
+ac_unique_file="book.tex"
+ac_subst_vars='LTLIBOBJS
+LIBOBJS
+HTTEX
+PDFTEX
+TEX
+ICON
+MKDIR_P
+INSTALL_DATA
+INSTALL_SCRIPT
+INSTALL_PROGRAM
+target_alias
+host_alias
+build_alias
+LIBS
+ECHO_T
+ECHO_N
+ECHO_C
+DEFS
+mandir
+localedir
+libdir
+psdir
+pdfdir
+dvidir
+htmldir
+infodir
+docdir
+oldincludedir
+includedir
+localstatedir
+sharedstatedir
+sysconfdir
+datadir
+datarootdir
+libexecdir
+sbindir
+bindir
+program_transform_name
+prefix
+exec_prefix
+PACKAGE_URL
+PACKAGE_BUGREPORT
+PACKAGE_STRING
+PACKAGE_VERSION
+PACKAGE_TARNAME
+PACKAGE_NAME
+PATH_SEPARATOR
+SHELL'
+ac_subst_files=''
+ac_user_opts='
+enable_option_checking
+'
+ ac_precious_vars='build_alias
+host_alias
+target_alias'
+
+
+# Initialize some variables set by options.
+ac_init_help=
+ac_init_version=false
+ac_unrecognized_opts=
+ac_unrecognized_sep=
+# The variables have the same names as the options, with
+# dashes changed to underlines.
+cache_file=/dev/null
+exec_prefix=NONE
+no_create=
+no_recursion=
+prefix=NONE
+program_prefix=NONE
+program_suffix=NONE
+program_transform_name=s,x,x,
+silent=
+site=
+srcdir=
+verbose=
+x_includes=NONE
+x_libraries=NONE
+
+# Installation directory options.
+# These are left unexpanded so users can "make install exec_prefix=/foo"
+# and all the variables that are supposed to be based on exec_prefix
+# by default will actually change.
+# Use braces instead of parens because sh, perl, etc. also accept them.
+# (The list follows the same order as the GNU Coding Standards.)
+bindir='${exec_prefix}/bin'
+sbindir='${exec_prefix}/sbin'
+libexecdir='${exec_prefix}/libexec'
+datarootdir='${prefix}/share'
+datadir='${datarootdir}'
+sysconfdir='${prefix}/etc'
+sharedstatedir='${prefix}/com'
+localstatedir='${prefix}/var'
+includedir='${prefix}/include'
+oldincludedir='/usr/include'
+docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
+infodir='${datarootdir}/info'
+htmldir='${docdir}'
+dvidir='${docdir}'
+pdfdir='${docdir}'
+psdir='${docdir}'
+libdir='${exec_prefix}/lib'
+localedir='${datarootdir}/locale'
+mandir='${datarootdir}/man'
+
+ac_prev=
+ac_dashdash=
+for ac_option
+do
+ # If the previous option needs an argument, assign it.
+ if test -n "$ac_prev"; then
+ eval $ac_prev=\$ac_option
+ ac_prev=
+ continue
+ fi
+
+ case $ac_option in
+ *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
+ *=) ac_optarg= ;;
+ *) ac_optarg=yes ;;
+ esac
+
+ # Accept the important Cygnus configure options, so we can diagnose typos.
+
+ case $ac_dashdash$ac_option in
+ --)
+ ac_dashdash=yes ;;
+
+ -bindir | --bindir | --bindi | --bind | --bin | --bi)
+ ac_prev=bindir ;;
+ -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*)
+ bindir=$ac_optarg ;;
+
+ -build | --build | --buil | --bui | --bu)
+ ac_prev=build_alias ;;
+ -build=* | --build=* | --buil=* | --bui=* | --bu=*)
+ build_alias=$ac_optarg ;;
+
+ -cache-file | --cache-file | --cache-fil | --cache-fi \
+ | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
+ ac_prev=cache_file ;;
+ -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \
+ | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)
+ cache_file=$ac_optarg ;;
+
+ --config-cache | -C)
+ cache_file=config.cache ;;
+
+ -datadir | --datadir | --datadi | --datad)
+ ac_prev=datadir ;;
+ -datadir=* | --datadir=* | --datadi=* | --datad=*)
+ datadir=$ac_optarg ;;
+
+ -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \
+ | --dataroo | --dataro | --datar)
+ ac_prev=datarootdir ;;
+ -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \
+ | --dataroot=* | --dataroo=* | --dataro=* | --datar=*)
+ datarootdir=$ac_optarg ;;
+
+ -disable-* | --disable-*)
+ ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
+ # Reject names that are not valid shell variable names.
+ expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
+ as_fn_error $? "invalid feature name: $ac_useropt"
+ ac_useropt_orig=$ac_useropt
+ ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
+ case $ac_user_opts in
+ *"
+"enable_$ac_useropt"
+"*) ;;
+ *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig"
+ ac_unrecognized_sep=', ';;
+ esac
+ eval enable_$ac_useropt=no ;;
+
+ -docdir | --docdir | --docdi | --doc | --do)
+ ac_prev=docdir ;;
+ -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*)
+ docdir=$ac_optarg ;;
+
+ -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv)
+ ac_prev=dvidir ;;
+ -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*)
+ dvidir=$ac_optarg ;;
+
+ -enable-* | --enable-*)
+ ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
+ # Reject names that are not valid shell variable names.
+ expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
+ as_fn_error $? "invalid feature name: $ac_useropt"
+ ac_useropt_orig=$ac_useropt
+ ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
+ case $ac_user_opts in
+ *"
+"enable_$ac_useropt"
+"*) ;;
+ *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig"
+ ac_unrecognized_sep=', ';;
+ esac
+ eval enable_$ac_useropt=\$ac_optarg ;;
+
+ -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
+ | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
+ | --exec | --exe | --ex)
+ ac_prev=exec_prefix ;;
+ -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \
+ | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \
+ | --exec=* | --exe=* | --ex=*)
+ exec_prefix=$ac_optarg ;;
+
+ -gas | --gas | --ga | --g)
+ # Obsolete; use --with-gas.
+ with_gas=yes ;;
+
+ -help | --help | --hel | --he | -h)
+ ac_init_help=long ;;
+ -help=r* | --help=r* | --hel=r* | --he=r* | -hr*)
+ ac_init_help=recursive ;;
+ -help=s* | --help=s* | --hel=s* | --he=s* | -hs*)
+ ac_init_help=short ;;
+
+ -host | --host | --hos | --ho)
+ ac_prev=host_alias ;;
+ -host=* | --host=* | --hos=* | --ho=*)
+ host_alias=$ac_optarg ;;
+
+ -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht)
+ ac_prev=htmldir ;;
+ -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \
+ | --ht=*)
+ htmldir=$ac_optarg ;;
+
+ -includedir | --includedir | --includedi | --included | --include \
+ | --includ | --inclu | --incl | --inc)
+ ac_prev=includedir ;;
+ -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \
+ | --includ=* | --inclu=* | --incl=* | --inc=*)
+ includedir=$ac_optarg ;;
+
+ -infodir | --infodir | --infodi | --infod | --info | --inf)
+ ac_prev=infodir ;;
+ -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*)
+ infodir=$ac_optarg ;;
+
+ -libdir | --libdir | --libdi | --libd)
+ ac_prev=libdir ;;
+ -libdir=* | --libdir=* | --libdi=* | --libd=*)
+ libdir=$ac_optarg ;;
+
+ -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \
+ | --libexe | --libex | --libe)
+ ac_prev=libexecdir ;;
+ -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \
+ | --libexe=* | --libex=* | --libe=*)
+ libexecdir=$ac_optarg ;;
+
+ -localedir | --localedir | --localedi | --localed | --locale)
+ ac_prev=localedir ;;
+ -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*)
+ localedir=$ac_optarg ;;
+
+ -localstatedir | --localstatedir | --localstatedi | --localstated \
+ | --localstate | --localstat | --localsta | --localst | --locals)
+ ac_prev=localstatedir ;;
+ -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \
+ | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*)
+ localstatedir=$ac_optarg ;;
+
+ -mandir | --mandir | --mandi | --mand | --man | --ma | --m)
+ ac_prev=mandir ;;
+ -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*)
+ mandir=$ac_optarg ;;
+
+ -nfp | --nfp | --nf)
+ # Obsolete; use --without-fp.
+ with_fp=no ;;
+
+ -no-create | --no-create | --no-creat | --no-crea | --no-cre \
+ | --no-cr | --no-c | -n)
+ no_create=yes ;;
+
+ -no-recursion | --no-recursion | --no-recursio | --no-recursi \
+ | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r)
+ no_recursion=yes ;;
+
+ -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \
+ | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \
+ | --oldin | --oldi | --old | --ol | --o)
+ ac_prev=oldincludedir ;;
+ -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \
+ | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \
+ | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*)
+ oldincludedir=$ac_optarg ;;
+
+ -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
+ ac_prev=prefix ;;
+ -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
+ prefix=$ac_optarg ;;
+
+ -program-prefix | --program-prefix | --program-prefi | --program-pref \
+ | --program-pre | --program-pr | --program-p)
+ ac_prev=program_prefix ;;
+ -program-prefix=* | --program-prefix=* | --program-prefi=* \
+ | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)
+ program_prefix=$ac_optarg ;;
+
+ -program-suffix | --program-suffix | --program-suffi | --program-suff \
+ | --program-suf | --program-su | --program-s)
+ ac_prev=program_suffix ;;
+ -program-suffix=* | --program-suffix=* | --program-suffi=* \
+ | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)
+ program_suffix=$ac_optarg ;;
+
+ -program-transform-name | --program-transform-name \
+ | --program-transform-nam | --program-transform-na \
+ | --program-transform-n | --program-transform- \
+ | --program-transform | --program-transfor \
+ | --program-transfo | --program-transf \
+ | --program-trans | --program-tran \
+ | --progr-tra | --program-tr | --program-t)
+ ac_prev=program_transform_name ;;
+ -program-transform-name=* | --program-transform-name=* \
+ | --program-transform-nam=* | --program-transform-na=* \
+ | --program-transform-n=* | --program-transform-=* \
+ | --program-transform=* | --program-transfor=* \
+ | --program-transfo=* | --program-transf=* \
+ | --program-trans=* | --program-tran=* \
+ | --progr-tra=* | --program-tr=* | --program-t=*)
+ program_transform_name=$ac_optarg ;;
+
+ -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd)
+ ac_prev=pdfdir ;;
+ -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*)
+ pdfdir=$ac_optarg ;;
+
+ -psdir | --psdir | --psdi | --psd | --ps)
+ ac_prev=psdir ;;
+ -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*)
+ psdir=$ac_optarg ;;
+
+ -q | -quiet | --quiet | --quie | --qui | --qu | --q \
+ | -silent | --silent | --silen | --sile | --sil)
+ silent=yes ;;
+
+ -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
+ ac_prev=sbindir ;;
+ -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
+ | --sbi=* | --sb=*)
+ sbindir=$ac_optarg ;;
+
+ -sharedstatedir | --sharedstatedir | --sharedstatedi \
+ | --sharedstated | --sharedstate | --sharedstat | --sharedsta \
+ | --sharedst | --shareds | --shared | --share | --shar \
+ | --sha | --sh)
+ ac_prev=sharedstatedir ;;
+ -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \
+ | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \
+ | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \
+ | --sha=* | --sh=*)
+ sharedstatedir=$ac_optarg ;;
+
+ -site | --site | --sit)
+ ac_prev=site ;;
+ -site=* | --site=* | --sit=*)
+ site=$ac_optarg ;;
+
+ -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
+ ac_prev=srcdir ;;
+ -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
+ srcdir=$ac_optarg ;;
+
+ -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \
+ | --syscon | --sysco | --sysc | --sys | --sy)
+ ac_prev=sysconfdir ;;
+ -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \
+ | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*)
+ sysconfdir=$ac_optarg ;;
+
+ -target | --target | --targe | --targ | --tar | --ta | --t)
+ ac_prev=target_alias ;;
+ -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
+ target_alias=$ac_optarg ;;
+
+ -v | -verbose | --verbose | --verbos | --verbo | --verb)
+ verbose=yes ;;
+
+ -version | --version | --versio | --versi | --vers | -V)
+ ac_init_version=: ;;
+
+ -with-* | --with-*)
+ ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
+ # Reject names that are not valid shell variable names.
+ expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
+ as_fn_error $? "invalid package name: $ac_useropt"
+ ac_useropt_orig=$ac_useropt
+ ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
+ case $ac_user_opts in
+ *"
+"with_$ac_useropt"
+"*) ;;
+ *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig"
+ ac_unrecognized_sep=', ';;
+ esac
+ eval with_$ac_useropt=\$ac_optarg ;;
+
+ -without-* | --without-*)
+ ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'`
+ # Reject names that are not valid shell variable names.
+ expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
+ as_fn_error $? "invalid package name: $ac_useropt"
+ ac_useropt_orig=$ac_useropt
+ ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
+ case $ac_user_opts in
+ *"
+"with_$ac_useropt"
+"*) ;;
+ *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig"
+ ac_unrecognized_sep=', ';;
+ esac
+ eval with_$ac_useropt=no ;;
+
+ --x)
+ # Obsolete; use --with-x.
+ with_x=yes ;;
+
+ -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \
+ | --x-incl | --x-inc | --x-in | --x-i)
+ ac_prev=x_includes ;;
+ -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \
+ | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*)
+ x_includes=$ac_optarg ;;
+
+ -x-libraries | --x-libraries | --x-librarie | --x-librari \
+ | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l)
+ ac_prev=x_libraries ;;
+ -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \
+ | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
+ x_libraries=$ac_optarg ;;
+
+ -*) as_fn_error $? "unrecognized option: \`$ac_option'
+Try \`$0 --help' for more information"
+ ;;
+
+ *=*)
+ ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='`
+ # Reject names that are not valid shell variable names.
+ case $ac_envvar in #(
+ '' | [0-9]* | *[!_$as_cr_alnum]* )
+ as_fn_error $? "invalid variable name: \`$ac_envvar'" ;;
+ esac
+ eval $ac_envvar=\$ac_optarg
+ export $ac_envvar ;;
+
+ *)
+ # FIXME: should be removed in autoconf 3.0.
+ $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2
+ expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null &&
+ $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2
+ : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}"
+ ;;
+
+ esac
+done
+
+if test -n "$ac_prev"; then
+ ac_option=--`echo $ac_prev | sed 's/_/-/g'`
+ as_fn_error $? "missing argument to $ac_option"
+fi
+
+if test -n "$ac_unrecognized_opts"; then
+ case $enable_option_checking in
+ no) ;;
+ fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;;
+ *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;;
+ esac
+fi
+
+# Check all directory arguments for consistency.
+for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \
+ datadir sysconfdir sharedstatedir localstatedir includedir \
+ oldincludedir docdir infodir htmldir dvidir pdfdir psdir \
+ libdir localedir mandir
+do
+ eval ac_val=\$$ac_var
+ # Remove trailing slashes.
+ case $ac_val in
+ */ )
+ ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'`
+ eval $ac_var=\$ac_val;;
+ esac
+ # Be sure to have absolute directory names.
+ case $ac_val in
+ [\\/$]* | ?:[\\/]* ) continue;;
+ NONE | '' ) case $ac_var in *prefix ) continue;; esac;;
+ esac
+ as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val"
+done
+
+# There might be people who depend on the old broken behavior: `$host'
+# used to hold the argument of --host etc.
+# FIXME: To remove some day.
+build=$build_alias
+host=$host_alias
+target=$target_alias
+
+# FIXME: To remove some day.
+if test "x$host_alias" != x; then
+ if test "x$build_alias" = x; then
+ cross_compiling=maybe
+ elif test "x$build_alias" != "x$host_alias"; then
+ cross_compiling=yes
+ fi
+fi
+
+ac_tool_prefix=
+test -n "$host_alias" && ac_tool_prefix=$host_alias-
+
+test "$silent" = yes && exec 6>/dev/null
+
+
+ac_pwd=`pwd` && test -n "$ac_pwd" &&
+ac_ls_di=`ls -di .` &&
+ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
+ as_fn_error $? "working directory cannot be determined"
+test "X$ac_ls_di" = "X$ac_pwd_ls_di" ||
+ as_fn_error $? "pwd does not report name of working directory"
+
+
+# Find the source files, if location was not specified.
+if test -z "$srcdir"; then
+ ac_srcdir_defaulted=yes
+ # Try the directory containing this script, then the parent directory.
+ ac_confdir=`$as_dirname -- "$as_myself" ||
+$as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
+ X"$as_myself" : 'X\(//\)[^/]' \| \
+ X"$as_myself" : 'X\(//\)$' \| \
+ X"$as_myself" : 'X\(/\)' \| . 2>/dev/null ||
+$as_echo X"$as_myself" |
+ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
+ s//\1/
+ q
+ }
+ /^X\(\/\/\)[^/].*/{
+ s//\1/
+ q
+ }
+ /^X\(\/\/\)$/{
+ s//\1/
+ q
+ }
+ /^X\(\/\).*/{
+ s//\1/
+ q
+ }
+ s/.*/./; q'`
+ srcdir=$ac_confdir
+ if test ! -r "$srcdir/$ac_unique_file"; then
+ srcdir=..
+ fi
+else
+ ac_srcdir_defaulted=no
+fi
+if test ! -r "$srcdir/$ac_unique_file"; then
+ test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .."
+ as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir"
+fi
+ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work"
+ac_abs_confdir=`(
+ cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg"
+ pwd)`
+# When building in place, set srcdir=.
+if test "$ac_abs_confdir" = "$ac_pwd"; then
+ srcdir=.
+fi
+# Remove unnecessary trailing slashes from srcdir.
+# Double slashes in file names in object file debugging info
+# mess up M-x gdb in Emacs.
+case $srcdir in
+*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;;
+esac
+for ac_var in $ac_precious_vars; do
+ eval ac_env_${ac_var}_set=\${${ac_var}+set}
+ eval ac_env_${ac_var}_value=\$${ac_var}
+ eval ac_cv_env_${ac_var}_set=\${${ac_var}+set}
+ eval ac_cv_env_${ac_var}_value=\$${ac_var}
+done
+
+#
+# Report the --help message.
+#
+if test "$ac_init_help" = "long"; then
+ # Omit some internal or obsolete options to make the list less imposing.
+ # This message is too long to be a string in the A/UX 3.1 sh.
+ cat <<_ACEOF
+\`configure' configures teximpatient 2.4 to adapt to many kinds of systems.
+
+Usage: $0 [OPTION]... [VAR=VALUE]...
+
+To assign environment variables (e.g., CC, CFLAGS...), specify them as
+VAR=VALUE. See below for descriptions of some of the useful variables.
+
+Defaults for the options are specified in brackets.
+
+Configuration:
+ -h, --help display this help and exit
+ --help=short display options specific to this package
+ --help=recursive display the short help of all the included packages
+ -V, --version display version information and exit
+ -q, --quiet, --silent do not print \`checking ...' messages
+ --cache-file=FILE cache test results in FILE [disabled]
+ -C, --config-cache alias for \`--cache-file=config.cache'
+ -n, --no-create do not create output files
+ --srcdir=DIR find the sources in DIR [configure dir or \`..']
+
+Installation directories:
+ --prefix=PREFIX install architecture-independent files in PREFIX
+ [$ac_default_prefix]
+ --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX
+ [PREFIX]
+
+By default, \`make install' will install all the files in
+\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify
+an installation prefix other than \`$ac_default_prefix' using \`--prefix',
+for instance \`--prefix=\$HOME'.
+
+For better control, use the options below.
+
+Fine tuning of the installation directories:
+ --bindir=DIR user executables [EPREFIX/bin]
+ --sbindir=DIR system admin executables [EPREFIX/sbin]
+ --libexecdir=DIR program executables [EPREFIX/libexec]
+ --sysconfdir=DIR read-only single-machine data [PREFIX/etc]
+ --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com]
+ --localstatedir=DIR modifiable single-machine data [PREFIX/var]
+ --libdir=DIR object code libraries [EPREFIX/lib]
+ --includedir=DIR C header files [PREFIX/include]
+ --oldincludedir=DIR C header files for non-gcc [/usr/include]
+ --datarootdir=DIR read-only arch.-independent data root [PREFIX/share]
+ --datadir=DIR read-only architecture-independent data [DATAROOTDIR]
+ --infodir=DIR info documentation [DATAROOTDIR/info]
+ --localedir=DIR locale-dependent data [DATAROOTDIR/locale]
+ --mandir=DIR man documentation [DATAROOTDIR/man]
+ --docdir=DIR documentation root [DATAROOTDIR/doc/teximpatient]
+ --htmldir=DIR html documentation [DOCDIR]
+ --dvidir=DIR dvi documentation [DOCDIR]
+ --pdfdir=DIR pdf documentation [DOCDIR]
+ --psdir=DIR ps documentation [DOCDIR]
+_ACEOF
+
+ cat <<\_ACEOF
+_ACEOF
+fi
+
+if test -n "$ac_init_help"; then
+ case $ac_init_help in
+ short | recursive ) echo "Configuration of teximpatient 2.4:";;
+ esac
+ cat <<\_ACEOF
+
+Report bugs to <impatient@tug.org>.
+_ACEOF
+ac_status=$?
+fi
+
+if test "$ac_init_help" = "recursive"; then
+ # If there are subdirs, report their specific --help.
+ for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue
+ test -d "$ac_dir" ||
+ { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } ||
+ continue
+ ac_builddir=.
+
+case "$ac_dir" in
+.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
+*)
+ ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
+ # A ".." for each directory in $ac_dir_suffix.
+ ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
+ case $ac_top_builddir_sub in
+ "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
+ *) ac_top_build_prefix=$ac_top_builddir_sub/ ;;
+ esac ;;
+esac
+ac_abs_top_builddir=$ac_pwd
+ac_abs_builddir=$ac_pwd$ac_dir_suffix
+# for backward compatibility:
+ac_top_builddir=$ac_top_build_prefix
+
+case $srcdir in
+ .) # We are building in place.
+ ac_srcdir=.
+ ac_top_srcdir=$ac_top_builddir_sub
+ ac_abs_top_srcdir=$ac_pwd ;;
+ [\\/]* | ?:[\\/]* ) # Absolute name.
+ ac_srcdir=$srcdir$ac_dir_suffix;
+ ac_top_srcdir=$srcdir
+ ac_abs_top_srcdir=$srcdir ;;
+ *) # Relative name.
+ ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
+ ac_top_srcdir=$ac_top_build_prefix$srcdir
+ ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
+esac
+ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
+
+ cd "$ac_dir" || { ac_status=$?; continue; }
+ # Check for guested configure.
+ if test -f "$ac_srcdir/configure.gnu"; then
+ echo &&
+ $SHELL "$ac_srcdir/configure.gnu" --help=recursive
+ elif test -f "$ac_srcdir/configure"; then
+ echo &&
+ $SHELL "$ac_srcdir/configure" --help=recursive
+ else
+ $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2
+ fi || ac_status=$?
+ cd "$ac_pwd" || { ac_status=$?; break; }
+ done
+fi
+
+test -n "$ac_init_help" && exit $ac_status
+if $ac_init_version; then
+ cat <<\_ACEOF
+teximpatient configure 2.4
+generated by GNU Autoconf 2.69
+
+Copyright (C) 2012 Free Software Foundation, Inc.
+This configure script is free software; the Free Software Foundation
+gives unlimited permission to copy, distribute and modify it.
+_ACEOF
+ exit
+fi
+
+## ------------------------ ##
+## Autoconf initialization. ##
+## ------------------------ ##
+cat >config.log <<_ACEOF
+This file contains any messages produced by compilers while
+running configure, to aid debugging if configure makes a mistake.
+
+It was created by teximpatient $as_me 2.4, which was
+generated by GNU Autoconf 2.69. Invocation command line was
+
+ $ $0 $@
+
+_ACEOF
+exec 5>>config.log
+{
+cat <<_ASUNAME
+## --------- ##
+## Platform. ##
+## --------- ##
+
+hostname = `(hostname || uname -n) 2>/dev/null | sed 1q`
+uname -m = `(uname -m) 2>/dev/null || echo unknown`
+uname -r = `(uname -r) 2>/dev/null || echo unknown`
+uname -s = `(uname -s) 2>/dev/null || echo unknown`
+uname -v = `(uname -v) 2>/dev/null || echo unknown`
+
+/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown`
+/bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown`
+
+/bin/arch = `(/bin/arch) 2>/dev/null || echo unknown`
+/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown`
+/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown`
+/usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown`
+/bin/machine = `(/bin/machine) 2>/dev/null || echo unknown`
+/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown`
+/bin/universe = `(/bin/universe) 2>/dev/null || echo unknown`
+
+_ASUNAME
+
+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+ IFS=$as_save_IFS
+ test -z "$as_dir" && as_dir=.
+ $as_echo "PATH: $as_dir"
+ done
+IFS=$as_save_IFS
+
+} >&5
+
+cat >&5 <<_ACEOF
+
+
+## ----------- ##
+## Core tests. ##
+## ----------- ##
+
+_ACEOF
+
+
+# Keep a trace of the command line.
+# Strip out --no-create and --no-recursion so they do not pile up.
+# Strip out --silent because we don't want to record it for future runs.
+# Also quote any args containing shell meta-characters.
+# Make two passes to allow for proper duplicate-argument suppression.
+ac_configure_args=
+ac_configure_args0=
+ac_configure_args1=
+ac_must_keep_next=false
+for ac_pass in 1 2
+do
+ for ac_arg
+ do
+ case $ac_arg in
+ -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;;
+ -q | -quiet | --quiet | --quie | --qui | --qu | --q \
+ | -silent | --silent | --silen | --sile | --sil)
+ continue ;;
+ *\'*)
+ ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
+ esac
+ case $ac_pass in
+ 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;;
+ 2)
+ as_fn_append ac_configure_args1 " '$ac_arg'"
+ if test $ac_must_keep_next = true; then
+ ac_must_keep_next=false # Got value, back to normal.
+ else
+ case $ac_arg in
+ *=* | --config-cache | -C | -disable-* | --disable-* \
+ | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \
+ | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \
+ | -with-* | --with-* | -without-* | --without-* | --x)
+ case "$ac_configure_args0 " in
+ "$ac_configure_args1"*" '$ac_arg' "* ) continue ;;
+ esac
+ ;;
+ -* ) ac_must_keep_next=true ;;
+ esac
+ fi
+ as_fn_append ac_configure_args " '$ac_arg'"
+ ;;
+ esac
+ done
+done
+{ ac_configure_args0=; unset ac_configure_args0;}
+{ ac_configure_args1=; unset ac_configure_args1;}
+
+# When interrupted or exit'd, cleanup temporary files, and complete
+# config.log. We remove comments because anyway the quotes in there
+# would cause problems or look ugly.
+# WARNING: Use '\'' to represent an apostrophe within the trap.
+# WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug.
+trap 'exit_status=$?
+ # Save into config.log some information that might help in debugging.
+ {
+ echo
+
+ $as_echo "## ---------------- ##
+## Cache variables. ##
+## ---------------- ##"
+ echo
+ # The following way of writing the cache mishandles newlines in values,
+(
+ for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do
+ eval ac_val=\$$ac_var
+ case $ac_val in #(
+ *${as_nl}*)
+ case $ac_var in #(
+ *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5
+$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
+ esac
+ case $ac_var in #(
+ _ | IFS | as_nl) ;; #(
+ BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #(
+ *) { eval $ac_var=; unset $ac_var;} ;;
+ esac ;;
+ esac
+ done
+ (set) 2>&1 |
+ case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #(
+ *${as_nl}ac_space=\ *)
+ sed -n \
+ "s/'\''/'\''\\\\'\'''\''/g;
+ s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p"
+ ;; #(
+ *)
+ sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
+ ;;
+ esac |
+ sort
+)
+ echo
+
+ $as_echo "## ----------------- ##
+## Output variables. ##
+## ----------------- ##"
+ echo
+ for ac_var in $ac_subst_vars
+ do
+ eval ac_val=\$$ac_var
+ case $ac_val in
+ *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
+ esac
+ $as_echo "$ac_var='\''$ac_val'\''"
+ done | sort
+ echo
+
+ if test -n "$ac_subst_files"; then
+ $as_echo "## ------------------- ##
+## File substitutions. ##
+## ------------------- ##"
+ echo
+ for ac_var in $ac_subst_files
+ do
+ eval ac_val=\$$ac_var
+ case $ac_val in
+ *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
+ esac
+ $as_echo "$ac_var='\''$ac_val'\''"
+ done | sort
+ echo
+ fi
+
+ if test -s confdefs.h; then
+ $as_echo "## ----------- ##
+## confdefs.h. ##
+## ----------- ##"
+ echo
+ cat confdefs.h
+ echo
+ fi
+ test "$ac_signal" != 0 &&
+ $as_echo "$as_me: caught signal $ac_signal"
+ $as_echo "$as_me: exit $exit_status"
+ } >&5
+ rm -f core *.core core.conftest.* &&
+ rm -f -r conftest* confdefs* conf$$* $ac_clean_files &&
+ exit $exit_status
+' 0
+for ac_signal in 1 2 13 15; do
+ trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal
+done
+ac_signal=0
+
+# confdefs.h avoids OS command line length limits that DEFS can exceed.
+rm -f -r conftest* confdefs.h
+
+$as_echo "/* confdefs.h */" > confdefs.h
+
+# Predefined preprocessor variables.
+
+cat >>confdefs.h <<_ACEOF
+#define PACKAGE_NAME "$PACKAGE_NAME"
+_ACEOF
+
+cat >>confdefs.h <<_ACEOF
+#define PACKAGE_TARNAME "$PACKAGE_TARNAME"
+_ACEOF
+
+cat >>confdefs.h <<_ACEOF
+#define PACKAGE_VERSION "$PACKAGE_VERSION"
+_ACEOF
+
+cat >>confdefs.h <<_ACEOF
+#define PACKAGE_STRING "$PACKAGE_STRING"
+_ACEOF
+
+cat >>confdefs.h <<_ACEOF
+#define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT"
+_ACEOF
+
+cat >>confdefs.h <<_ACEOF
+#define PACKAGE_URL "$PACKAGE_URL"
+_ACEOF
+
+
+# Let the site file select an alternate cache file if it wants to.
+# Prefer an explicitly selected file to automatically selected ones.
+ac_site_file1=NONE
+ac_site_file2=NONE
+if test -n "$CONFIG_SITE"; then
+ # We do not want a PATH search for config.site.
+ case $CONFIG_SITE in #((
+ -*) ac_site_file1=./$CONFIG_SITE;;
+ */*) ac_site_file1=$CONFIG_SITE;;
+ *) ac_site_file1=./$CONFIG_SITE;;
+ esac
+elif test "x$prefix" != xNONE; then
+ ac_site_file1=$prefix/share/config.site
+ ac_site_file2=$prefix/etc/config.site
+else
+ ac_site_file1=$ac_default_prefix/share/config.site
+ ac_site_file2=$ac_default_prefix/etc/config.site
+fi
+for ac_site_file in "$ac_site_file1" "$ac_site_file2"
+do
+ test "x$ac_site_file" = xNONE && continue
+ if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then
+ { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5
+$as_echo "$as_me: loading site script $ac_site_file" >&6;}
+ sed 's/^/| /' "$ac_site_file" >&5
+ . "$ac_site_file" \
+ || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+as_fn_error $? "failed to load site script $ac_site_file
+See \`config.log' for more details" "$LINENO" 5; }
+ fi
+done
+
+if test -r "$cache_file"; then
+ # Some versions of bash will fail to source /dev/null (special files
+ # actually), so we avoid doing that. DJGPP emulates it as a regular file.
+ if test /dev/null != "$cache_file" && test -f "$cache_file"; then
+ { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5
+$as_echo "$as_me: loading cache $cache_file" >&6;}
+ case $cache_file in
+ [\\/]* | ?:[\\/]* ) . "$cache_file";;
+ *) . "./$cache_file";;
+ esac
+ fi
+else
+ { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5
+$as_echo "$as_me: creating cache $cache_file" >&6;}
+ >$cache_file
+fi
+
+# Check that the precious variables saved in the cache have kept the same
+# value.
+ac_cache_corrupted=false
+for ac_var in $ac_precious_vars; do
+ eval ac_old_set=\$ac_cv_env_${ac_var}_set
+ eval ac_new_set=\$ac_env_${ac_var}_set
+ eval ac_old_val=\$ac_cv_env_${ac_var}_value
+ eval ac_new_val=\$ac_env_${ac_var}_value
+ case $ac_old_set,$ac_new_set in
+ set,)
+ { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
+$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
+ ac_cache_corrupted=: ;;
+ ,set)
+ { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5
+$as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;}
+ ac_cache_corrupted=: ;;
+ ,);;
+ *)
+ if test "x$ac_old_val" != "x$ac_new_val"; then
+ # differences in whitespace do not lead to failure.
+ ac_old_val_w=`echo x $ac_old_val`
+ ac_new_val_w=`echo x $ac_new_val`
+ if test "$ac_old_val_w" != "$ac_new_val_w"; then
+ { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5
+$as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;}
+ ac_cache_corrupted=:
+ else
+ { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5
+$as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;}
+ eval $ac_var=\$ac_old_val
+ fi
+ { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5
+$as_echo "$as_me: former value: \`$ac_old_val'" >&2;}
+ { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5
+$as_echo "$as_me: current value: \`$ac_new_val'" >&2;}
+ fi;;
+ esac
+ # Pass precious variables to config.status.
+ if test "$ac_new_set" = set; then
+ case $ac_new_val in
+ *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
+ *) ac_arg=$ac_var=$ac_new_val ;;
+ esac
+ case " $ac_configure_args " in
+ *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy.
+ *) as_fn_append ac_configure_args " '$ac_arg'" ;;
+ esac
+ fi
+done
+if $ac_cache_corrupted; then
+ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+ { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5
+$as_echo "$as_me: error: changes in the environment can compromise the build" >&2;}
+ as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5
+fi
+## -------------------- ##
+## Main body of script. ##
+## -------------------- ##
+
+ac_ext=c
+ac_cpp='$CPP $CPPFLAGS'
+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
+ac_compiler_gnu=$ac_cv_c_compiler_gnu
+
+
+
+
+ac_aux_dir=
+for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do
+ if test -f "$ac_dir/install-sh"; then
+ ac_aux_dir=$ac_dir
+ ac_install_sh="$ac_aux_dir/install-sh -c"
+ break
+ elif test -f "$ac_dir/install.sh"; then
+ ac_aux_dir=$ac_dir
+ ac_install_sh="$ac_aux_dir/install.sh -c"
+ break
+ elif test -f "$ac_dir/shtool"; then
+ ac_aux_dir=$ac_dir
+ ac_install_sh="$ac_aux_dir/shtool install -c"
+ break
+ fi
+done
+if test -z "$ac_aux_dir"; then
+ as_fn_error $? "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5
+fi
+
+# These three variables are undocumented and unsupported,
+# and are intended to be withdrawn in a future Autoconf release.
+# They can cause serious problems if a builder's source tree is in a directory
+# whose full name contains unusual characters.
+ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var.
+ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var.
+ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var.
+
+
+# Find a good install program. We prefer a C program (faster),
+# so one script is as good as another. But avoid the broken or
+# incompatible versions:
+# SysV /etc/install, /usr/sbin/install
+# SunOS /usr/etc/install
+# IRIX /sbin/install
+# AIX /bin/install
+# AmigaOS /C/install, which installs bootblocks on floppy discs
+# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag
+# AFS /usr/afsws/bin/install, which mishandles nonexistent args
+# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
+# OS/2's system install, which has a completely different semantic
+# ./install, which can be erroneously created by make from ./install.sh.
+# Reject install programs that cannot install multiple files.
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5
+$as_echo_n "checking for a BSD-compatible install... " >&6; }
+if test -z "$INSTALL"; then
+if ${ac_cv_path_install+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+ IFS=$as_save_IFS
+ test -z "$as_dir" && as_dir=.
+ # Account for people who put trailing slashes in PATH elements.
+case $as_dir/ in #((
+ ./ | .// | /[cC]/* | \
+ /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \
+ ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \
+ /usr/ucb/* ) ;;
+ *)
+ # OSF1 and SCO ODT 3.0 have their own names for install.
+ # Don't use installbsd from OSF since it installs stuff as root
+ # by default.
+ for ac_prog in ginstall scoinst install; do
+ for ac_exec_ext in '' $ac_executable_extensions; do
+ if as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then
+ if test $ac_prog = install &&
+ grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
+ # AIX install. It has an incompatible calling convention.
+ :
+ elif test $ac_prog = install &&
+ grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
+ # program-specific install script used by HP pwplus--don't use.
+ :
+ else
+ rm -rf conftest.one conftest.two conftest.dir
+ echo one > conftest.one
+ echo two > conftest.two
+ mkdir conftest.dir
+ if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" &&
+ test -s conftest.one && test -s conftest.two &&
+ test -s conftest.dir/conftest.one &&
+ test -s conftest.dir/conftest.two
+ then
+ ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c"
+ break 3
+ fi
+ fi
+ fi
+ done
+ done
+ ;;
+esac
+
+ done
+IFS=$as_save_IFS
+
+rm -rf conftest.one conftest.two conftest.dir
+
+fi
+ if test "${ac_cv_path_install+set}" = set; then
+ INSTALL=$ac_cv_path_install
+ else
+ # As a last resort, use the slow shell script. Don't cache a
+ # value for INSTALL within a source directory, because that will
+ # break other packages using the cache if that directory is
+ # removed, or if the value is a relative name.
+ INSTALL=$ac_install_sh
+ fi
+fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5
+$as_echo "$INSTALL" >&6; }
+
+# Use test -z because SunOS4 sh mishandles braces in ${var-val}.
+# It thinks the first close brace ends the variable substitution.
+test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
+
+test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'
+
+test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
+
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5
+$as_echo_n "checking for a thread-safe mkdir -p... " >&6; }
+if test -z "$MKDIR_P"; then
+ if ${ac_cv_path_mkdir+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin
+do
+ IFS=$as_save_IFS
+ test -z "$as_dir" && as_dir=.
+ for ac_prog in mkdir gmkdir; do
+ for ac_exec_ext in '' $ac_executable_extensions; do
+ as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext" || continue
+ case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #(
+ 'mkdir (GNU coreutils) '* | \
+ 'mkdir (coreutils) '* | \
+ 'mkdir (fileutils) '4.1*)
+ ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext
+ break 3;;
+ esac
+ done
+ done
+ done
+IFS=$as_save_IFS
+
+fi
+
+ test -d ./--version && rmdir ./--version
+ if test "${ac_cv_path_mkdir+set}" = set; then
+ MKDIR_P="$ac_cv_path_mkdir -p"
+ else
+ # As a last resort, use the slow shell script. Don't cache a
+ # value for MKDIR_P within a source directory, because that will
+ # break other packages using the cache if that directory is
+ # removed, or if the value is a relative name.
+ MKDIR_P="$ac_install_sh -d"
+ fi
+fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5
+$as_echo "$MKDIR_P" >&6; }
+
+# Extract the first word of "icon", so it can be a program name with args.
+set dummy icon; ac_word=$2
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+$as_echo_n "checking for $ac_word... " >&6; }
+if ${ac_cv_path_ICON+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+ case $ICON in
+ [\\/]* | ?:[\\/]*)
+ ac_cv_path_ICON="$ICON" # Let the user override the test with a path.
+ ;;
+ *)
+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+ IFS=$as_save_IFS
+ test -z "$as_dir" && as_dir=.
+ for ac_exec_ext in '' $ac_executable_extensions; do
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+ ac_cv_path_ICON="$as_dir/$ac_word$ac_exec_ext"
+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
+ break 2
+ fi
+done
+ done
+IFS=$as_save_IFS
+
+ ;;
+esac
+fi
+ICON=$ac_cv_path_ICON
+if test -n "$ICON"; then
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ICON" >&5
+$as_echo "$ICON" >&6; }
+else
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
+$as_echo "no" >&6; }
+fi
+
+
+# Extract the first word of "tex", so it can be a program name with args.
+set dummy tex; ac_word=$2
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+$as_echo_n "checking for $ac_word... " >&6; }
+if ${ac_cv_path_TEX+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+ case $TEX in
+ [\\/]* | ?:[\\/]*)
+ ac_cv_path_TEX="$TEX" # Let the user override the test with a path.
+ ;;
+ *)
+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+ IFS=$as_save_IFS
+ test -z "$as_dir" && as_dir=.
+ for ac_exec_ext in '' $ac_executable_extensions; do
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+ ac_cv_path_TEX="$as_dir/$ac_word$ac_exec_ext"
+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
+ break 2
+ fi
+done
+ done
+IFS=$as_save_IFS
+
+ ;;
+esac
+fi
+TEX=$ac_cv_path_TEX
+if test -n "$TEX"; then
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $TEX" >&5
+$as_echo "$TEX" >&6; }
+else
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
+$as_echo "no" >&6; }
+fi
+
+
+# Extract the first word of "pdftex", so it can be a program name with args.
+set dummy pdftex; ac_word=$2
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+$as_echo_n "checking for $ac_word... " >&6; }
+if ${ac_cv_path_PDFTEX+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+ case $PDFTEX in
+ [\\/]* | ?:[\\/]*)
+ ac_cv_path_PDFTEX="$PDFTEX" # Let the user override the test with a path.
+ ;;
+ *)
+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+ IFS=$as_save_IFS
+ test -z "$as_dir" && as_dir=.
+ for ac_exec_ext in '' $ac_executable_extensions; do
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+ ac_cv_path_PDFTEX="$as_dir/$ac_word$ac_exec_ext"
+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
+ break 2
+ fi
+done
+ done
+IFS=$as_save_IFS
+
+ ;;
+esac
+fi
+PDFTEX=$ac_cv_path_PDFTEX
+if test -n "$PDFTEX"; then
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PDFTEX" >&5
+$as_echo "$PDFTEX" >&6; }
+else
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
+$as_echo "no" >&6; }
+fi
+
+
+# Extract the first word of "httex", so it can be a program name with args.
+set dummy httex; ac_word=$2
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+$as_echo_n "checking for $ac_word... " >&6; }
+if ${ac_cv_path_HTTEX+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+ case $HTTEX in
+ [\\/]* | ?:[\\/]*)
+ ac_cv_path_HTTEX="$HTTEX" # Let the user override the test with a path.
+ ;;
+ *)
+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+ IFS=$as_save_IFS
+ test -z "$as_dir" && as_dir=.
+ for ac_exec_ext in '' $ac_executable_extensions; do
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+ ac_cv_path_HTTEX="$as_dir/$ac_word$ac_exec_ext"
+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
+ break 2
+ fi
+done
+ done
+IFS=$as_save_IFS
+
+ ;;
+esac
+fi
+HTTEX=$ac_cv_path_HTTEX
+if test -n "$HTTEX"; then
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $HTTEX" >&5
+$as_echo "$HTTEX" >&6; }
+else
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
+$as_echo "no" >&6; }
+fi
+
+
+
+ac_config_files="$ac_config_files Makefile"
+
+cat >confcache <<\_ACEOF
+# This file is a shell script that caches the results of configure
+# tests run on this system so they can be shared between configure
+# scripts and configure runs, see configure's option --config-cache.
+# It is not useful on other systems. If it contains results you don't
+# want to keep, you may remove or edit it.
+#
+# config.status only pays attention to the cache file if you give it
+# the --recheck option to rerun configure.
+#
+# `ac_cv_env_foo' variables (set or unset) will be overridden when
+# loading this file, other *unset* `ac_cv_foo' will be assigned the
+# following values.
+
+_ACEOF
+
+# The following way of writing the cache mishandles newlines in values,
+# but we know of no workaround that is simple, portable, and efficient.
+# So, we kill variables containing newlines.
+# Ultrix sh set writes to stderr and can't be redirected directly,
+# and sets the high bit in the cache file unless we assign to the vars.
+(
+ for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do
+ eval ac_val=\$$ac_var
+ case $ac_val in #(
+ *${as_nl}*)
+ case $ac_var in #(
+ *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5
+$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
+ esac
+ case $ac_var in #(
+ _ | IFS | as_nl) ;; #(
+ BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #(
+ *) { eval $ac_var=; unset $ac_var;} ;;
+ esac ;;
+ esac
+ done
+
+ (set) 2>&1 |
+ case $as_nl`(ac_space=' '; set) 2>&1` in #(
+ *${as_nl}ac_space=\ *)
+ # `set' does not quote correctly, so add quotes: double-quote
+ # substitution turns \\\\ into \\, and sed turns \\ into \.
+ sed -n \
+ "s/'/'\\\\''/g;
+ s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p"
+ ;; #(
+ *)
+ # `set' quotes correctly as required by POSIX, so do not add quotes.
+ sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
+ ;;
+ esac |
+ sort
+) |
+ sed '
+ /^ac_cv_env_/b end
+ t clear
+ :clear
+ s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/
+ t end
+ s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/
+ :end' >>confcache
+if diff "$cache_file" confcache >/dev/null 2>&1; then :; else
+ if test -w "$cache_file"; then
+ if test "x$cache_file" != "x/dev/null"; then
+ { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5
+$as_echo "$as_me: updating cache $cache_file" >&6;}
+ if test ! -f "$cache_file" || test -h "$cache_file"; then
+ cat confcache >"$cache_file"
+ else
+ case $cache_file in #(
+ */* | ?:*)
+ mv -f confcache "$cache_file"$$ &&
+ mv -f "$cache_file"$$ "$cache_file" ;; #(
+ *)
+ mv -f confcache "$cache_file" ;;
+ esac
+ fi
+ fi
+ else
+ { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5
+$as_echo "$as_me: not updating unwritable cache $cache_file" >&6;}
+ fi
+fi
+rm -f confcache
+
+test "x$prefix" = xNONE && prefix=$ac_default_prefix
+# Let make expand exec_prefix.
+test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
+
+# Transform confdefs.h into DEFS.
+# Protect against shell expansion while executing Makefile rules.
+# Protect against Makefile macro expansion.
+#
+# If the first sed substitution is executed (which looks for macros that
+# take arguments), then branch to the quote section. Otherwise,
+# look for a macro that doesn't take arguments.
+ac_script='
+:mline
+/\\$/{
+ N
+ s,\\\n,,
+ b mline
+}
+t clear
+:clear
+s/^[ ]*#[ ]*define[ ][ ]*\([^ (][^ (]*([^)]*)\)[ ]*\(.*\)/-D\1=\2/g
+t quote
+s/^[ ]*#[ ]*define[ ][ ]*\([^ ][^ ]*\)[ ]*\(.*\)/-D\1=\2/g
+t quote
+b any
+:quote
+s/[ `~#$^&*(){}\\|;'\''"<>?]/\\&/g
+s/\[/\\&/g
+s/\]/\\&/g
+s/\$/$$/g
+H
+:any
+${
+ g
+ s/^\n//
+ s/\n/ /g
+ p
+}
+'
+DEFS=`sed -n "$ac_script" confdefs.h`
+
+
+ac_libobjs=
+ac_ltlibobjs=
+U=
+for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue
+ # 1. Remove the extension, and $U if already installed.
+ ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
+ ac_i=`$as_echo "$ac_i" | sed "$ac_script"`
+ # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR
+ # will be set to the directory where LIBOBJS objects are built.
+ as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext"
+ as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo'
+done
+LIBOBJS=$ac_libobjs
+
+LTLIBOBJS=$ac_ltlibobjs
+
+
+
+: "${CONFIG_STATUS=./config.status}"
+ac_write_fail=0
+ac_clean_files_save=$ac_clean_files
+ac_clean_files="$ac_clean_files $CONFIG_STATUS"
+{ $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5
+$as_echo "$as_me: creating $CONFIG_STATUS" >&6;}
+as_write_fail=0
+cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1
+#! $SHELL
+# Generated by $as_me.
+# Run this file to recreate the current configuration.
+# Compiler output produced by configure, useful for debugging
+# configure, is in config.log if it exists.
+
+debug=false
+ac_cs_recheck=false
+ac_cs_silent=false
+
+SHELL=\${CONFIG_SHELL-$SHELL}
+export SHELL
+_ASEOF
+cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1
+## -------------------- ##
+## M4sh Initialization. ##
+## -------------------- ##
+
+# Be more Bourne compatible
+DUALCASE=1; export DUALCASE # for MKS sh
+if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
+ emulate sh
+ NULLCMD=:
+ # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
+ # is contrary to our usage. Disable this feature.
+ alias -g '${1+"$@"}'='"$@"'
+ setopt NO_GLOB_SUBST
+else
+ case `(set -o) 2>/dev/null` in #(
+ *posix*) :
+ set -o posix ;; #(
+ *) :
+ ;;
+esac
+fi
+
+
+as_nl='
+'
+export as_nl
+# Printing a long string crashes Solaris 7 /usr/bin/printf.
+as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
+as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
+as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
+# Prefer a ksh shell builtin over an external printf program on Solaris,
+# but without wasting forks for bash or zsh.
+if test -z "$BASH_VERSION$ZSH_VERSION" \
+ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
+ as_echo='print -r --'
+ as_echo_n='print -rn --'
+elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
+ as_echo='printf %s\n'
+ as_echo_n='printf %s'
+else
+ if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
+ as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
+ as_echo_n='/usr/ucb/echo -n'
+ else
+ as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
+ as_echo_n_body='eval
+ arg=$1;
+ case $arg in #(
+ *"$as_nl"*)
+ expr "X$arg" : "X\\(.*\\)$as_nl";
+ arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
+ esac;
+ expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
+ '
+ export as_echo_n_body
+ as_echo_n='sh -c $as_echo_n_body as_echo'
+ fi
+ export as_echo_body
+ as_echo='sh -c $as_echo_body as_echo'
+fi
+
+# The user is always right.
+if test "${PATH_SEPARATOR+set}" != set; then
+ PATH_SEPARATOR=:
+ (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
+ (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
+ PATH_SEPARATOR=';'
+ }
+fi
+
+
+# IFS
+# We need space, tab and new line, in precisely that order. Quoting is
+# there to prevent editors from complaining about space-tab.
+# (If _AS_PATH_WALK were called with IFS unset, it would disable word
+# splitting by setting IFS to empty value.)
+IFS=" "" $as_nl"
+
+# Find who we are. Look in the path if we contain no directory separator.
+as_myself=
+case $0 in #((
+ *[\\/]* ) as_myself=$0 ;;
+ *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+ IFS=$as_save_IFS
+ test -z "$as_dir" && as_dir=.
+ test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
+ done
+IFS=$as_save_IFS
+
+ ;;
+esac
+# We did not find ourselves, most probably we were run as `sh COMMAND'
+# in which case we are not to be found in the path.
+if test "x$as_myself" = x; then
+ as_myself=$0
+fi
+if test ! -f "$as_myself"; then
+ $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
+ exit 1
+fi
+
+# Unset variables that we do not need and which cause bugs (e.g. in
+# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1"
+# suppresses any "Segmentation fault" message there. '((' could
+# trigger a bug in pdksh 5.2.14.
+for as_var in BASH_ENV ENV MAIL MAILPATH
+do eval test x\${$as_var+set} = xset \
+ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
+done
+PS1='$ '
+PS2='> '
+PS4='+ '
+
+# NLS nuisances.
+LC_ALL=C
+export LC_ALL
+LANGUAGE=C
+export LANGUAGE
+
+# CDPATH.
+(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
+
+
+# as_fn_error STATUS ERROR [LINENO LOG_FD]
+# ----------------------------------------
+# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
+# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
+# script with STATUS, using 1 if that was 0.
+as_fn_error ()
+{
+ as_status=$1; test $as_status -eq 0 && as_status=1
+ if test "$4"; then
+ as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
+ $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
+ fi
+ $as_echo "$as_me: error: $2" >&2
+ as_fn_exit $as_status
+} # as_fn_error
+
+
+# as_fn_set_status STATUS
+# -----------------------
+# Set $? to STATUS, without forking.
+as_fn_set_status ()
+{
+ return $1
+} # as_fn_set_status
+
+# as_fn_exit STATUS
+# -----------------
+# Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
+as_fn_exit ()
+{
+ set +e
+ as_fn_set_status $1
+ exit $1
+} # as_fn_exit
+
+# as_fn_unset VAR
+# ---------------
+# Portably unset VAR.
+as_fn_unset ()
+{
+ { eval $1=; unset $1;}
+}
+as_unset=as_fn_unset
+# as_fn_append VAR VALUE
+# ----------------------
+# Append the text in VALUE to the end of the definition contained in VAR. Take
+# advantage of any shell optimizations that allow amortized linear growth over
+# repeated appends, instead of the typical quadratic growth present in naive
+# implementations.
+if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
+ eval 'as_fn_append ()
+ {
+ eval $1+=\$2
+ }'
+else
+ as_fn_append ()
+ {
+ eval $1=\$$1\$2
+ }
+fi # as_fn_append
+
+# as_fn_arith ARG...
+# ------------------
+# Perform arithmetic evaluation on the ARGs, and store the result in the
+# global $as_val. Take advantage of shells that can avoid forks. The arguments
+# must be portable across $(()) and expr.
+if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
+ eval 'as_fn_arith ()
+ {
+ as_val=$(( $* ))
+ }'
+else
+ as_fn_arith ()
+ {
+ as_val=`expr "$@" || test $? -eq 1`
+ }
+fi # as_fn_arith
+
+
+if expr a : '\(a\)' >/dev/null 2>&1 &&
+ test "X`expr 00001 : '.*\(...\)'`" = X001; then
+ as_expr=expr
+else
+ as_expr=false
+fi
+
+if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
+ as_basename=basename
+else
+ as_basename=false
+fi
+
+if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
+ as_dirname=dirname
+else
+ as_dirname=false
+fi
+
+as_me=`$as_basename -- "$0" ||
+$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
+ X"$0" : 'X\(//\)$' \| \
+ X"$0" : 'X\(/\)' \| . 2>/dev/null ||
+$as_echo X/"$0" |
+ sed '/^.*\/\([^/][^/]*\)\/*$/{
+ s//\1/
+ q
+ }
+ /^X\/\(\/\/\)$/{
+ s//\1/
+ q
+ }
+ /^X\/\(\/\).*/{
+ s//\1/
+ q
+ }
+ s/.*/./; q'`
+
+# Avoid depending upon Character Ranges.
+as_cr_letters='abcdefghijklmnopqrstuvwxyz'
+as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
+as_cr_Letters=$as_cr_letters$as_cr_LETTERS
+as_cr_digits='0123456789'
+as_cr_alnum=$as_cr_Letters$as_cr_digits
+
+ECHO_C= ECHO_N= ECHO_T=
+case `echo -n x` in #(((((
+-n*)
+ case `echo 'xy\c'` in
+ *c*) ECHO_T=' ';; # ECHO_T is single tab character.
+ xy) ECHO_C='\c';;
+ *) echo `echo ksh88 bug on AIX 6.1` > /dev/null
+ ECHO_T=' ';;
+ esac;;
+*)
+ ECHO_N='-n';;
+esac
+
+rm -f conf$$ conf$$.exe conf$$.file
+if test -d conf$$.dir; then
+ rm -f conf$$.dir/conf$$.file
+else
+ rm -f conf$$.dir
+ mkdir conf$$.dir 2>/dev/null
+fi
+if (echo >conf$$.file) 2>/dev/null; then
+ if ln -s conf$$.file conf$$ 2>/dev/null; then
+ as_ln_s='ln -s'
+ # ... but there are two gotchas:
+ # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
+ # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
+ # In both cases, we have to default to `cp -pR'.
+ ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
+ as_ln_s='cp -pR'
+ elif ln conf$$.file conf$$ 2>/dev/null; then
+ as_ln_s=ln
+ else
+ as_ln_s='cp -pR'
+ fi
+else
+ as_ln_s='cp -pR'
+fi
+rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
+rmdir conf$$.dir 2>/dev/null
+
+
+# as_fn_mkdir_p
+# -------------
+# Create "$as_dir" as a directory, including parents if necessary.
+as_fn_mkdir_p ()
+{
+
+ case $as_dir in #(
+ -*) as_dir=./$as_dir;;
+ esac
+ test -d "$as_dir" || eval $as_mkdir_p || {
+ as_dirs=
+ while :; do
+ case $as_dir in #(
+ *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
+ *) as_qdir=$as_dir;;
+ esac
+ as_dirs="'$as_qdir' $as_dirs"
+ as_dir=`$as_dirname -- "$as_dir" ||
+$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
+ X"$as_dir" : 'X\(//\)[^/]' \| \
+ X"$as_dir" : 'X\(//\)$' \| \
+ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
+$as_echo X"$as_dir" |
+ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
+ s//\1/
+ q
+ }
+ /^X\(\/\/\)[^/].*/{
+ s//\1/
+ q
+ }
+ /^X\(\/\/\)$/{
+ s//\1/
+ q
+ }
+ /^X\(\/\).*/{
+ s//\1/
+ q
+ }
+ s/.*/./; q'`
+ test -d "$as_dir" && break
+ done
+ test -z "$as_dirs" || eval "mkdir $as_dirs"
+ } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
+
+
+} # as_fn_mkdir_p
+if mkdir -p . 2>/dev/null; then
+ as_mkdir_p='mkdir -p "$as_dir"'
+else
+ test -d ./-p && rmdir ./-p
+ as_mkdir_p=false
+fi
+
+
+# as_fn_executable_p FILE
+# -----------------------
+# Test if FILE is an executable regular file.
+as_fn_executable_p ()
+{
+ test -f "$1" && test -x "$1"
+} # as_fn_executable_p
+as_test_x='test -x'
+as_executable_p=as_fn_executable_p
+
+# Sed expression to map a string onto a valid CPP name.
+as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
+
+# Sed expression to map a string onto a valid variable name.
+as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
+
+
+exec 6>&1
+## ----------------------------------- ##
+## Main body of $CONFIG_STATUS script. ##
+## ----------------------------------- ##
+_ASEOF
+test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1
+
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
+# Save the log message, to keep $0 and so on meaningful, and to
+# report actual input values of CONFIG_FILES etc. instead of their
+# values after options handling.
+ac_log="
+This file was extended by teximpatient $as_me 2.4, which was
+generated by GNU Autoconf 2.69. Invocation command line was
+
+ CONFIG_FILES = $CONFIG_FILES
+ CONFIG_HEADERS = $CONFIG_HEADERS
+ CONFIG_LINKS = $CONFIG_LINKS
+ CONFIG_COMMANDS = $CONFIG_COMMANDS
+ $ $0 $@
+
+on `(hostname || uname -n) 2>/dev/null | sed 1q`
+"
+
+_ACEOF
+
+case $ac_config_files in *"
+"*) set x $ac_config_files; shift; ac_config_files=$*;;
+esac
+
+
+
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
+# Files that config.status was made for.
+config_files="$ac_config_files"
+
+_ACEOF
+
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
+ac_cs_usage="\
+\`$as_me' instantiates files and other configuration actions
+from templates according to the current configuration. Unless the files
+and actions are specified as TAGs, all are instantiated by default.
+
+Usage: $0 [OPTION]... [TAG]...
+
+ -h, --help print this help, then exit
+ -V, --version print version number and configuration settings, then exit
+ --config print configuration, then exit
+ -q, --quiet, --silent
+ do not print progress messages
+ -d, --debug don't remove temporary files
+ --recheck update $as_me by reconfiguring in the same conditions
+ --file=FILE[:TEMPLATE]
+ instantiate the configuration file FILE
+
+Configuration files:
+$config_files
+
+Report bugs to <impatient@tug.org>."
+
+_ACEOF
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
+ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
+ac_cs_version="\\
+teximpatient config.status 2.4
+configured by $0, generated by GNU Autoconf 2.69,
+ with options \\"\$ac_cs_config\\"
+
+Copyright (C) 2012 Free Software Foundation, Inc.
+This config.status script is free software; the Free Software Foundation
+gives unlimited permission to copy, distribute and modify it."
+
+ac_pwd='$ac_pwd'
+srcdir='$srcdir'
+INSTALL='$INSTALL'
+MKDIR_P='$MKDIR_P'
+test -n "\$AWK" || AWK=awk
+_ACEOF
+
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
+# The default lists apply if the user does not specify any file.
+ac_need_defaults=:
+while test $# != 0
+do
+ case $1 in
+ --*=?*)
+ ac_option=`expr "X$1" : 'X\([^=]*\)='`
+ ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
+ ac_shift=:
+ ;;
+ --*=)
+ ac_option=`expr "X$1" : 'X\([^=]*\)='`
+ ac_optarg=
+ ac_shift=:
+ ;;
+ *)
+ ac_option=$1
+ ac_optarg=$2
+ ac_shift=shift
+ ;;
+ esac
+
+ case $ac_option in
+ # Handling of the options.
+ -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
+ ac_cs_recheck=: ;;
+ --version | --versio | --versi | --vers | --ver | --ve | --v | -V )
+ $as_echo "$ac_cs_version"; exit ;;
+ --config | --confi | --conf | --con | --co | --c )
+ $as_echo "$ac_cs_config"; exit ;;
+ --debug | --debu | --deb | --de | --d | -d )
+ debug=: ;;
+ --file | --fil | --fi | --f )
+ $ac_shift
+ case $ac_optarg in
+ *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
+ '') as_fn_error $? "missing file argument" ;;
+ esac
+ as_fn_append CONFIG_FILES " '$ac_optarg'"
+ ac_need_defaults=false;;
+ --he | --h | --help | --hel | -h )
+ $as_echo "$ac_cs_usage"; exit ;;
+ -q | -quiet | --quiet | --quie | --qui | --qu | --q \
+ | -silent | --silent | --silen | --sile | --sil | --si | --s)
+ ac_cs_silent=: ;;
+
+ # This is an error.
+ -*) as_fn_error $? "unrecognized option: \`$1'
+Try \`$0 --help' for more information." ;;
+
+ *) as_fn_append ac_config_targets " $1"
+ ac_need_defaults=false ;;
+
+ esac
+ shift
+done
+
+ac_configure_extra_args=
+
+if $ac_cs_silent; then
+ exec 6>/dev/null
+ ac_configure_extra_args="$ac_configure_extra_args --silent"
+fi
+
+_ACEOF
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
+if \$ac_cs_recheck; then
+ set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
+ shift
+ \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6
+ CONFIG_SHELL='$SHELL'
+ export CONFIG_SHELL
+ exec "\$@"
+fi
+
+_ACEOF
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
+exec 5>>config.log
+{
+ echo
+ sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
+## Running $as_me. ##
+_ASBOX
+ $as_echo "$ac_log"
+} >&5
+
+_ACEOF
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
+_ACEOF
+
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
+
+# Handling of arguments.
+for ac_config_target in $ac_config_targets
+do
+ case $ac_config_target in
+ "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
+
+ *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
+ esac
+done
+
+
+# If the user did not use the arguments to specify the items to instantiate,
+# then the envvar interface is used. Set only those that are not.
+# We use the long form for the default assignment because of an extremely
+# bizarre bug on SunOS 4.1.3.
+if $ac_need_defaults; then
+ test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
+fi
+
+# Have a temporary directory for convenience. Make it in the build tree
+# simply because there is no reason against having it here, and in addition,
+# creating and moving files from /tmp can sometimes cause problems.
+# Hook for its removal unless debugging.
+# Note that there is a small window in which the directory will not be cleaned:
+# after its creation but before its name has been assigned to `$tmp'.
+$debug ||
+{
+ tmp= ac_tmp=
+ trap 'exit_status=$?
+ : "${ac_tmp:=$tmp}"
+ { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status
+' 0
+ trap 'as_fn_exit 1' 1 2 13 15
+}
+# Create a (secure) tmp directory for tmp files.
+
+{
+ tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
+ test -d "$tmp"
+} ||
+{
+ tmp=./conf$$-$RANDOM
+ (umask 077 && mkdir "$tmp")
+} || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5
+ac_tmp=$tmp
+
+# Set up the scripts for CONFIG_FILES section.
+# No need to generate them if there are no CONFIG_FILES.
+# This happens for instance with `./config.status config.h'.
+if test -n "$CONFIG_FILES"; then
+
+
+ac_cr=`echo X | tr X '\015'`
+# On cygwin, bash can eat \r inside `` if the user requested igncr.
+# But we know of no other shell where ac_cr would be empty at this
+# point, so we can use a bashism as a fallback.
+if test "x$ac_cr" = x; then
+ eval ac_cr=\$\'\\r\'
+fi
+ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
+if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
+ ac_cs_awk_cr='\\r'
+else
+ ac_cs_awk_cr=$ac_cr
+fi
+
+echo 'BEGIN {' >"$ac_tmp/subs1.awk" &&
+_ACEOF
+
+
+{
+ echo "cat >conf$$subs.awk <<_ACEOF" &&
+ echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' &&
+ echo "_ACEOF"
+} >conf$$subs.sh ||
+ as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
+ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'`
+ac_delim='%!_!# '
+for ac_last_try in false false false false false :; do
+ . ./conf$$subs.sh ||
+ as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
+
+ ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X`
+ if test $ac_delim_n = $ac_delim_num; then
+ break
+ elif $ac_last_try; then
+ as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
+ else
+ ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
+ fi
+done
+rm -f conf$$subs.sh
+
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
+cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK &&
+_ACEOF
+sed -n '
+h
+s/^/S["/; s/!.*/"]=/
+p
+g
+s/^[^!]*!//
+:repl
+t repl
+s/'"$ac_delim"'$//
+t delim
+:nl
+h
+s/\(.\{148\}\)..*/\1/
+t more1
+s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/
+p
+n
+b repl
+:more1
+s/["\\]/\\&/g; s/^/"/; s/$/"\\/
+p
+g
+s/.\{148\}//
+t nl
+:delim
+h
+s/\(.\{148\}\)..*/\1/
+t more2
+s/["\\]/\\&/g; s/^/"/; s/$/"/
+p
+b
+:more2
+s/["\\]/\\&/g; s/^/"/; s/$/"\\/
+p
+g
+s/.\{148\}//
+t delim
+' <conf$$subs.awk | sed '
+/^[^""]/{
+ N
+ s/\n//
+}
+' >>$CONFIG_STATUS || ac_write_fail=1
+rm -f conf$$subs.awk
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
+_ACAWK
+cat >>"\$ac_tmp/subs1.awk" <<_ACAWK &&
+ for (key in S) S_is_set[key] = 1
+ FS = ""
+
+}
+{
+ line = $ 0
+ nfields = split(line, field, "@")
+ substed = 0
+ len = length(field[1])
+ for (i = 2; i < nfields; i++) {
+ key = field[i]
+ keylen = length(key)
+ if (S_is_set[key]) {
+ value = S[key]
+ line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3)
+ len += length(value) + length(field[++i])
+ substed = 1
+ } else
+ len += 1 + keylen
+ }
+
+ print line
+}
+
+_ACAWK
+_ACEOF
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
+if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then
+ sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g"
+else
+ cat
+fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \
+ || as_fn_error $? "could not setup config files machinery" "$LINENO" 5
+_ACEOF
+
+# VPATH may cause trouble with some makes, so we remove sole $(srcdir),
+# ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and
+# trailing colons and then remove the whole line if VPATH becomes empty
+# (actually we leave an empty line to preserve line numbers).
+if test "x$srcdir" = x.; then
+ ac_vpsub='/^[ ]*VPATH[ ]*=[ ]*/{
+h
+s///
+s/^/:/
+s/[ ]*$/:/
+s/:\$(srcdir):/:/g
+s/:\${srcdir}:/:/g
+s/:@srcdir@:/:/g
+s/^:*//
+s/:*$//
+x
+s/\(=[ ]*\).*/\1/
+G
+s/\n//
+s/^[^=]*=[ ]*$//
+}'
+fi
+
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
+fi # test -n "$CONFIG_FILES"
+
+
+eval set X " :F $CONFIG_FILES "
+shift
+for ac_tag
+do
+ case $ac_tag in
+ :[FHLC]) ac_mode=$ac_tag; continue;;
+ esac
+ case $ac_mode$ac_tag in
+ :[FHL]*:*);;
+ :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;;
+ :[FH]-) ac_tag=-:-;;
+ :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
+ esac
+ ac_save_IFS=$IFS
+ IFS=:
+ set x $ac_tag
+ IFS=$ac_save_IFS
+ shift
+ ac_file=$1
+ shift
+
+ case $ac_mode in
+ :L) ac_source=$1;;
+ :[FH])
+ ac_file_inputs=
+ for ac_f
+ do
+ case $ac_f in
+ -) ac_f="$ac_tmp/stdin";;
+ *) # Look for the file first in the build tree, then in the source tree
+ # (if the path is not absolute). The absolute path cannot be DOS-style,
+ # because $ac_f cannot contain `:'.
+ test -f "$ac_f" ||
+ case $ac_f in
+ [\\/$]*) false;;
+ *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
+ esac ||
+ as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;;
+ esac
+ case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
+ as_fn_append ac_file_inputs " '$ac_f'"
+ done
+
+ # Let's still pretend it is `configure' which instantiates (i.e., don't
+ # use $as_me), people would be surprised to read:
+ # /* config.h. Generated by config.status. */
+ configure_input='Generated from '`
+ $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g'
+ `' by configure.'
+ if test x"$ac_file" != x-; then
+ configure_input="$ac_file. $configure_input"
+ { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5
+$as_echo "$as_me: creating $ac_file" >&6;}
+ fi
+ # Neutralize special characters interpreted by sed in replacement strings.
+ case $configure_input in #(
+ *\&* | *\|* | *\\* )
+ ac_sed_conf_input=`$as_echo "$configure_input" |
+ sed 's/[\\\\&|]/\\\\&/g'`;; #(
+ *) ac_sed_conf_input=$configure_input;;
+ esac
+
+ case $ac_tag in
+ *:-:* | *:-) cat >"$ac_tmp/stdin" \
+ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;;
+ esac
+ ;;
+ esac
+
+ ac_dir=`$as_dirname -- "$ac_file" ||
+$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
+ X"$ac_file" : 'X\(//\)[^/]' \| \
+ X"$ac_file" : 'X\(//\)$' \| \
+ X"$ac_file" : 'X\(/\)' \| . 2>/dev/null ||
+$as_echo X"$ac_file" |
+ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
+ s//\1/
+ q
+ }
+ /^X\(\/\/\)[^/].*/{
+ s//\1/
+ q
+ }
+ /^X\(\/\/\)$/{
+ s//\1/
+ q
+ }
+ /^X\(\/\).*/{
+ s//\1/
+ q
+ }
+ s/.*/./; q'`
+ as_dir="$ac_dir"; as_fn_mkdir_p
+ ac_builddir=.
+
+case "$ac_dir" in
+.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
+*)
+ ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
+ # A ".." for each directory in $ac_dir_suffix.
+ ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
+ case $ac_top_builddir_sub in
+ "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
+ *) ac_top_build_prefix=$ac_top_builddir_sub/ ;;
+ esac ;;
+esac
+ac_abs_top_builddir=$ac_pwd
+ac_abs_builddir=$ac_pwd$ac_dir_suffix
+# for backward compatibility:
+ac_top_builddir=$ac_top_build_prefix
+
+case $srcdir in
+ .) # We are building in place.
+ ac_srcdir=.
+ ac_top_srcdir=$ac_top_builddir_sub
+ ac_abs_top_srcdir=$ac_pwd ;;
+ [\\/]* | ?:[\\/]* ) # Absolute name.
+ ac_srcdir=$srcdir$ac_dir_suffix;
+ ac_top_srcdir=$srcdir
+ ac_abs_top_srcdir=$srcdir ;;
+ *) # Relative name.
+ ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
+ ac_top_srcdir=$ac_top_build_prefix$srcdir
+ ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
+esac
+ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
+
+
+ case $ac_mode in
+ :F)
+ #
+ # CONFIG_FILE
+ #
+
+ case $INSTALL in
+ [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
+ *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;
+ esac
+ ac_MKDIR_P=$MKDIR_P
+ case $MKDIR_P in
+ [\\/$]* | ?:[\\/]* ) ;;
+ */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;;
+ esac
+_ACEOF
+
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
+# If the template does not know about datarootdir, expand it.
+# FIXME: This hack should be removed a few years after 2.60.
+ac_datarootdir_hack=; ac_datarootdir_seen=
+ac_sed_dataroot='
+/datarootdir/ {
+ p
+ q
+}
+/@datadir@/p
+/@docdir@/p
+/@infodir@/p
+/@localedir@/p
+/@mandir@/p'
+case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
+*datarootdir*) ac_datarootdir_seen=yes;;
+*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
+$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
+_ACEOF
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
+ ac_datarootdir_hack='
+ s&@datadir@&$datadir&g
+ s&@docdir@&$docdir&g
+ s&@infodir@&$infodir&g
+ s&@localedir@&$localedir&g
+ s&@mandir@&$mandir&g
+ s&\\\${datarootdir}&$datarootdir&g' ;;
+esac
+_ACEOF
+
+# Neutralize VPATH when `$srcdir' = `.'.
+# Shell code in configure.ac might set extrasub.
+# FIXME: do we really want to maintain this feature?
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
+ac_sed_extra="$ac_vpsub
+$extrasub
+_ACEOF
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
+:t
+/@[a-zA-Z_][a-zA-Z_0-9]*@/!b
+s|@configure_input@|$ac_sed_conf_input|;t t
+s&@top_builddir@&$ac_top_builddir_sub&;t t
+s&@top_build_prefix@&$ac_top_build_prefix&;t t
+s&@srcdir@&$ac_srcdir&;t t
+s&@abs_srcdir@&$ac_abs_srcdir&;t t
+s&@top_srcdir@&$ac_top_srcdir&;t t
+s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t
+s&@builddir@&$ac_builddir&;t t
+s&@abs_builddir@&$ac_abs_builddir&;t t
+s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
+s&@INSTALL@&$ac_INSTALL&;t t
+s&@MKDIR_P@&$ac_MKDIR_P&;t t
+$ac_datarootdir_hack
+"
+eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \
+ >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5
+
+test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
+ { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } &&
+ { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \
+ "$ac_tmp/out"`; test -z "$ac_out"; } &&
+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'
+which seems to be undefined. Please make sure it is defined" >&5
+$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
+which seems to be undefined. Please make sure it is defined" >&2;}
+
+ rm -f "$ac_tmp/stdin"
+ case $ac_file in
+ -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";;
+ *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";;
+ esac \
+ || as_fn_error $? "could not create $ac_file" "$LINENO" 5
+ ;;
+
+
+
+ esac
+
+done # for ac_tag
+
+
+as_fn_exit 0
+_ACEOF
+ac_clean_files=$ac_clean_files_save
+
+test $ac_write_fail = 0 ||
+ as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5
+
+
+# configure is writing to config.log, and then calls config.status.
+# config.status does its own redirection, appending to config.log.
+# Unfortunately, on DOS this fails, as config.log is still kept open
+# by configure, so config.status won't be able to write to it; its
+# output is simply discarded. So we exec the FD to /dev/null,
+# effectively closing config.log, so it can be properly (re)opened and
+# appended to by config.status. When coming back to configure, we
+# need to make the FD available again.
+if test "$no_create" != yes; then
+ ac_cs_success=:
+ ac_config_status_args=
+ test "$silent" = yes &&
+ ac_config_status_args="$ac_config_status_args --quiet"
+ exec 5>/dev/null
+ $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false
+ exec 5>>config.log
+ # Use ||, not &&, to avoid exiting from the if with $? = 1, which
+ # would make configure fail if this is the last instruction.
+ $ac_cs_success || as_fn_exit 1
+fi
+if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then
+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5
+$as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;}
+fi
+
diff --git a/Master/texmf-dist/doc/plain/impatient/configure.ac b/Master/texmf-dist/doc/plain/impatient/configure.ac
new file mode 100644
index 00000000000..b3d1286f7bc
--- /dev/null
+++ b/Master/texmf-dist/doc/plain/impatient/configure.ac
@@ -0,0 +1,16 @@
+dnl $Id: configure.ac,v 1.4 2014/11/13 17:08:00 karl Exp $
+dnl public domain
+dnl configure.ac for TeX for the Impatient.
+
+AC_INIT([teximpatient], [2.4], [impatient@tug.org])
+AC_CONFIG_SRCDIR([book.tex])
+
+AC_PROG_INSTALL
+AC_PROG_MKDIR_P
+AC_PATH_PROG([ICON], [icon])
+AC_PATH_PROG([TEX], [tex])
+AC_PATH_PROG([PDFTEX], [pdftex])
+AC_PATH_PROG([HTTEX], [httex])
+
+AC_CONFIG_FILES([Makefile])
+AC_OUTPUT
diff --git a/Master/texmf-dist/doc/plain/impatient/copyrght.tex b/Master/texmf-dist/doc/plain/impatient/copyrght.tex
index 2fe8addc6c9..6bf93f76e9c 100644
--- a/Master/texmf-dist/doc/plain/impatient/copyrght.tex
+++ b/Master/texmf-dist/doc/plain/impatient/copyrght.tex
@@ -1,5 +1,5 @@
% This is part of the book TeX for the Impatient.
-% Copyright (C) 2003 Paul W. Abrahams, Kathryn A. Hargreaves, Karl Berry.
+% Copyright (C) 2003, 2013 Paul W. Abrahams, Kathryn A. Hargreaves, Karl Berry.
% See file fdl.tex for copying conditions.
\input macros
@@ -20,7 +20,7 @@ information on all features of both plain and primitive \TeX.
\bigskip
-\noindent Copyright \copyright{} 2003 Paul~W. Abrahams,
+\noindent Copyright \copyright{} 2003, 2013 Paul~W. Abrahams,
Kathryn~A. Hargreaves, and Karl Berry.
\bigskip
diff --git a/Master/texmf-dist/doc/plain/impatient/fdl.tex b/Master/texmf-dist/doc/plain/impatient/fdl.tex
index 4ae17d2d753..a352e69bd34 100644
--- a/Master/texmf-dist/doc/plain/impatient/fdl.tex
+++ b/Master/texmf-dist/doc/plain/impatient/fdl.tex
@@ -9,17 +9,18 @@
\def\eqprint#1{#1\relax}
\def\\{\hfil\break}
\let\ref=\eqref
-
% we have to have section numbers since we have internal references.
\def\fdlkludge{\begingroup
\count255=\eqnumber \advance\count255 by 1
\the\count255.
\endgroup}
-Version 1.2, November 2002
+Version 1.3, 3 November 2008
- Copyright \copyright\ 2000,2001,2002 Free Software Foundation, Inc.\\
- 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\\
+ Copyright \copyright\ 2000,2001,2002,2007,2008 Free Software
+ Foundation, Inc.
+
+{\tt <http://fsf.org/>}\\
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
@@ -68,11 +69,11 @@ modifications and/or translated into another language.
A ``Secondary Section'' is a named appendix or a front-matter section of
the Document that deals exclusively with the relationship of the
-publishers or authors of the Document to the Document's overall subject
-(or to related matters) and contains nothing that could fall directly
-within that overall subject. (Thus, if the Document is in part a
-textbook of mathematics, a Secondary Section may not explain any
-mathematics.) The relationship could be a matter of historical
+publishers or authors of the Document to the Document's overall
+subject (or to related matters) and contains nothing that could fall
+directly within that overall subject. (Thus, if the Document is in
+part a textbook of mathematics, a Secondary Section may not explain
+any mathematics.) The relationship could be a matter of historical
connection with the subject or with related matters, or of legal,
commercial, philosophical, ethical or political position regarding
them.
@@ -121,6 +122,9 @@ formats which do not have any title page as such, ``Title Page'' means
the text near the most prominent appearance of the work's title,
preceding the beginning of the body of the text.
+The "publisher" means any person or entity that distributes copies of
+the Document to the public.
+
A section ``Entitled XYZ'' means a named subunit of the Document whose
title either is precisely XYZ or contains XYZ in parentheses following
text that translates XYZ in another language. (Here XYZ stands for a
@@ -136,7 +140,6 @@ License, but only as regards disclaiming warranties: any other
implication that these Warranty Disclaimers may have is void and has
no effect on the meaning of this License.
-
\section{VERBATIM COPYING}
\label{verbatim}
@@ -144,8 +147,8 @@ no effect on the meaning of this License.
You may copy and distribute the Document in any medium, either
commercially or noncommercially, provided that this License, the
copyright notices, and the license notice saying this License applies
-to the Document are reproduced in all copies, and that you add no other
-conditions whatsoever to those of this License. You may not use
+to the Document are reproduced in all copies, and that you add no
+other conditions whatsoever to those of this License. You may not use
technical measures to obstruct or control the reading or further
copying of the copies you make or distribute. However, you may accept
compensation in exchange for copies. If you distribute a large enough
@@ -192,8 +195,9 @@ Opaque copy (directly or through your agents or retailers) of that
edition to the public.
It is requested, but not required, that you contact the authors of the
-Document well before redistributing any large number of copies, to give
-them a chance to provide you with an updated version of the Document.
+Document well before redistributing any large number of copies, to
+give them a chance to provide you with an updated version of the
+Document.
\section{MODIFICATIONS}
@@ -323,16 +327,18 @@ Entitled ``Endorsements''.
\label{collections}
-You may make a collection consisting of the Document and other documents
-released under this License, and replace the individual copies of this
-License in the various documents with a single copy that is included in
-the collection, provided that you follow the rules of this License for
-verbatim copying of each of the documents in all other respects.
+You may make a collection consisting of the Document and other
+documents released under this License, and replace the individual
+copies of this License in the various documents with a single copy
+that is included in the collection, provided that you follow the rules
+of this License for verbatim copying of each of the documents in all
+other respects.
-You may extract a single document from such a collection, and distribute
-it individually under this License, provided you insert a copy of this
-License into the extracted document, and follow this License in all
-other respects regarding verbatim copying of that document.
+You may extract a single document from such a collection, and
+distribute it individually under this License, provided you insert a
+copy of this License into the extracted document, and follow this
+License in all other respects regarding verbatim copying of that
+document.
\section{AGGREGATION WITH INDEPENDENT WORKS}
@@ -385,23 +391,40 @@ changing the actual title.
\label{termination}
-You may not copy, modify, sublicense, or distribute the Document except
-as expressly provided for under this License. Any other attempt to
-copy, modify, sublicense or distribute the Document is void, and will
-automatically terminate your rights under this License. However,
-parties who have received copies, or rights, from you under this
-License will not have their licenses terminated so long as such
-parties remain in full compliance.
+You may not copy, modify, sublicense, or distribute the Document
+except as expressly provided under this License. Any attempt
+otherwise to copy, modify, sublicense, or distribute it is void, and
+will automatically terminate your rights under this License.
+
+However, if you cease all violation of this License, then your license
+from a particular copyright holder is reinstated (a) provisionally,
+unless and until the copyright holder explicitly and finally
+terminates your license, and (b) permanently, if the copyright holder
+fails to notify you of the violation by some reasonable means prior to
+60 days after the cessation.
+
+Moreover, your license from a particular copyright holder is
+reinstated permanently if the copyright holder notifies you of the
+violation by some reasonable means, this is the first time you have
+received notice of violation of this License (for any work) from that
+copyright holder, and you cure the violation prior to 30 days after
+your receipt of the notice.
+
+Termination of your rights under this section does not terminate the
+licenses of parties who have received copies or rights from you under
+this License. If your rights have been terminated and not permanently
+reinstated, receipt of a copy of some or all of the same material does
+not give you any rights to use it.
\section{FUTURE REVISIONS OF THIS LICENSE}
\label{future}
-The Free Software Foundation may publish new, revised versions
-of the GNU Free Documentation License from time to time. Such new
-versions will be similar in spirit to the present version, but may
-differ in detail to address new problems or concerns. See
+The Free Software Foundation may publish new, revised versions of the
+GNU Free Documentation License from time to time. Such new versions
+will be similar in spirit to the present version, but may differ in
+detail to address new problems or concerns. See
http://www.gnu.org/copyleft/.
Each version of the License is given a distinguishing version number.
@@ -411,7 +434,39 @@ following the terms and conditions either of that specified version or
of any later version that has been published (not as a draft) by the
Free Software Foundation. If the Document does not specify a version
number of this License, you may choose any version ever published (not
-as a draft) by the Free Software Foundation.
+as a draft) by the Free Software Foundation. If the Document
+specifies that a proxy can decide which future versions of this
+License can be used, that proxy's public statement of acceptance of a
+version permanently authorizes you to choose that version for the
+Document.
+
+11. RELICENSING
+
+"Massive Multiauthor Collaboration Site" (or "MMC Site") means any
+World Wide Web server that publishes copyrightable works and also
+provides prominent facilities for anybody to edit those works. A
+public wiki that anybody can edit is an example of such a server. A
+"Massive Multiauthor Collaboration" (or "MMC") contained in the site
+means any set of copyrightable works thus published on the MMC site.
+
+"CC-BY-SA" means the Creative Commons Attribution-Share Alike 3.0
+license published by Creative Commons Corporation, a not-for-profit
+corporation with a principal place of business in San Francisco,
+California, as well as future copyleft versions of that license
+published by that same organization.
+
+"Incorporate" means to publish or republish a Document, in whole or in
+part, as part of another Document.
+
+An MMC is "eligible for relicensing" if it is licensed under this
+License, and if all works that were first published under this License
+somewhere other than this MMC, and subsequently incorporated in whole or
+in part into the MMC, (1) had no cover texts or invariant sections, and
+(2) were thus incorporated prior to November 1, 2008.
+
+The operator of an MMC Site may republish an MMC contained in the site
+under CC-BY-SA on the same site at any time before August 1, 2009,
+provided the MMC is eligible for relicensing.
% this section title is so long, it messes up everything.
@@ -430,7 +485,7 @@ license notices just after the title page:
{\narrower\obeylines\eightrm\baselineskip=10pt
Copyright \copyright\ YEAR YOUR NAME.
Permission is granted to copy, distribute and/or modify this document
- under the terms of the GNU Free Documentation License, Version 1.2
+ under the terms of the GNU Free Documentation License, Version 1.3
or any later version published by the Free Software Foundation;
with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.
A copy of the license is included in the section entitled ``GNU
diff --git a/Master/texmf-dist/doc/plain/impatient/math.tex b/Master/texmf-dist/doc/plain/impatient/math.tex
index 31d7f1aa157..975c806398e 100644
--- a/Master/texmf-dist/doc/plain/impatient/math.tex
+++ b/Master/texmf-dist/doc/plain/impatient/math.tex
@@ -1,5 +1,5 @@
% This is part of the book TeX for the Impatient.
-% Copyright (C) 2003 Paul W. Abrahams, Kathryn A. Hargreaves, Karl Berry.
+% Copyright (C) 2003, 2014 Paul W. Abrahams, Kathryn A. Hargreaves, Karl Berry.
% See file fdl.tex for copying conditions.
\input macros
@@ -664,9 +664,9 @@ $${\int_0^\pi \sin^2 ax\,dx} = {\pi \over 2}$$
\begindesc
\cts limits {}
\explain
-When it's in text style, \TeX\ normally places limits after a large operator.
-This command tells \TeX\ to place
-limits above and below a large operator rather than after it.
+In text style, \TeX\ normally places limits after a large operator.
+This command tells \TeX\ to place limits above and below a large
+operator rather than after it.
If you specify more than one of |\limits|, |\nolimits|,
and |\display!-limits|, the last command rules.
@@ -684,13 +684,16 @@ two elements.
\begindesc
\cts nolimits {}
\explain
-When it's in display
-style, \TeX\ normally places limits above and below a large operator.
-(The |\int| operator is an exception---\TeX\
-places limits for |\int| after the operator in all cases.)
+In display style, \TeX\ normally places limits above and below a large
+operator. This command tells \TeX\ to place limits after a large
+operator rather than above and below it.
+
+The integral operators |\int| and |\oint| are exceptions---\TeX\ places
+limits after them in all cases, unless overridden, as in |\int\limits|.
+(\plainTeX\ defines ^|\int| and ^|\oint| as macros that specify the
+operator symbol followed by |\nolimits|---this is what causes them to
+behave differently by default.)
^^|\int//limits after|
-This command tells \TeX\ to place
-limits after a large operator rather than above and below it.
If you specify more than one of |\limits|, |\nolimits|,
and |\display!-limits|, the last command rules.
@@ -706,22 +709,9 @@ $$\bigcap\nolimits_{i=1}^Nq_i$$
\begindesc
\cts displaylimits {}
\explain
-This command tells \TeX\ to
-follow its normal rules for placement of limits:
-\olist\compact
-\li Limits on ^|\int| are placed after the operator.
-\li Limits on other large operators are placed after the
-operator in text style.
-\li Limits on other large operators are placed above and below the operator
-in display style.
-\endolist
-It's usually simpler to use |\limits| or |\nolimits|
-to produce a specific effect, but |\display!-limits| is sometimes
-useful in \minref{macro} definitions.
-
-Note that \plainTeX\ defines ^|\int| as a macro that sets |\nolimits|,
-so |\int\displaylimits| in text style restores the |\limits|
-convention.
+This command tells \TeX\ to place limits above and below all operators
+(including the integrals) if in display style, and after all operators
+if in text style.
If you specify more than one of |\limits|, |\nolimits|,
and |\display!-limits|, the last command rules.
diff --git a/Master/texmf-dist/doc/plain/impatient/paras.tex b/Master/texmf-dist/doc/plain/impatient/paras.tex
index 81501f57721..91aad27c984 100644
--- a/Master/texmf-dist/doc/plain/impatient/paras.tex
+++ b/Master/texmf-dist/doc/plain/impatient/paras.tex
@@ -1,5 +1,5 @@
% This is part of the book TeX for the Impatient.
-% Copyright (C) 2003 Paul W. Abrahams, Kathryn A. Hargreaves, Karl Berry.
+% Copyright (C) 2003, 2014 Paul W. Abrahams, Kathryn A. Hargreaves, Karl Berry.
% See file fdl.tex for copying conditions.
\input macros
@@ -1710,7 +1710,7 @@ individually for each one or put the change into |\everypar|
\cts linepenalty {\param{number}}
\explain
\minrefs{line break}
-This parameter specifies \minref{demerits} that \TeX\ assesses for each line
+This parameter specifies the \minref{penalty} that \TeX\ assesses for each line
break when it is breaking a paragraph into lines.
The penalty is independent of where the line break occurs.
Increasing the value
@@ -2145,8 +2145,8 @@ italics. \<arg\-u\-ment> must be followed by a period and a space token,
which serve
to set off \<argument> from \<general text>.
\<general text> consists of the text up to the next paragraph
-boundary, except that you can include multiple paragraphs by putting them
-within braces and ending a paragraph after the closing right brace.
+boundary. You can include multiple paragraphs by using |\endgraf|
+instead of a blank line or |\par|.
\example
\proclaim Theorem 1.
What I say is not to be believed.
diff --git a/Master/texmf-dist/doc/plain/impatient/tips.tex b/Master/texmf-dist/doc/plain/impatient/tips.tex
index b55408f71d4..3d0f1b8b974 100644
--- a/Master/texmf-dist/doc/plain/impatient/tips.tex
+++ b/Master/texmf-dist/doc/plain/impatient/tips.tex
@@ -1,5 +1,5 @@
% This is part of the book TeX for the Impatient.
-% Copyright (C) 2003 Paul W. Abrahams, Kathryn A. Hargreaves, Karl Berry.
+% Copyright (C) 2003, 2014 Paul W. Abrahams, Kathryn A. Hargreaves, Karl Berry.
% See file fdl.tex for copying conditions.
\input macros
@@ -81,7 +81,7 @@ if the page boundaries in your document change,
the page breaks that you've inserted may no longer be where you want them.
If you don't provide \TeX\ with a |\vfill| command to fill out the page
-after an |\eject|,
+before an |\eject|,
\TeX\ redistributes the extra blank space as best it can and then usually
complains that ``an
underfull |\vbox| (badness $10000$) has occurred while |\output| is active.''
diff --git a/Master/texmf-dist/doc/plain/impatient/usermacs.tex b/Master/texmf-dist/doc/plain/impatient/usermacs.tex
index 71d8d64bc26..dbf78ddb831 100644
--- a/Master/texmf-dist/doc/plain/impatient/usermacs.tex
+++ b/Master/texmf-dist/doc/plain/impatient/usermacs.tex
@@ -1,5 +1,5 @@
% This is part of the book TeX for the Impatient.
-% Copyright (C) 2003 Paul W. Abrahams, Kathryn A. Hargreaves, Karl Berry.
+% Copyright (C) 2003, 2014 Paul W. Abrahams, Kathryn A. Hargreaves, Karl Berry.
% See file fdl.tex for copying conditions.
\input macros
@@ -629,18 +629,19 @@ You can also |\write| to |\tocfile| yourself.
\tocfileopenedtrue
\immediate\openout\tocfile = \jobname.toc
\fi}%
-\def\writenumberedtocentry#1#2#3{\ifrewritetocfile
+\def\writetocentry#1#2{\ifrewritetocfile
\opentocfile
\write\tocfile{%
\expandafter\noexpand \csname toc#1entry\endcsname
- {#2}{#3}{\folio}}%
-\ignorespaces\fi}%
+ {#2}{\folio}}%
+\fi\ignorespaces}%
+%
\def\writenumberedtocentry#1#2#3{\ifrewritetocfile
\opentocfile
\write\tocfile{%
\expandafter\noexpand \csname toc#1entry\endcsname
{#2}{#3}{\folio}}%
-\ignorespaces\fi}%
+\fi\ignorespaces}%
|
To produce a table of contents, read the |.toc| file with