Update LuaTeX testfiles for ^@ change
[latex2e.git] / trunk / base / ltalloc.dtx
blob349271d131cc0fa0032db6583993a53222dbd801
1 % \iffalse meta-comment
3 % Copyright 1993-2016
4 % The LaTeX3 Project and any individual authors listed elsewhere
5 % in this file.
7 % This file is part of the LaTeX base system.
8 % -------------------------------------------
10 % It may be distributed and/or modified under the
11 % conditions of the LaTeX Project Public License, either version 1.3c
12 % of this license or (at your option) any later version.
13 % The latest version of this license is in
14 %    http://www.latex-project.org/lppl.txt
15 % and version 1.3c or later is part of all distributions of LaTeX
16 % version 2005/12/01 or later.
18 % This file has the LPPL maintenance status "maintained".
20 % The list of all files belonging to the LaTeX base distribution is
21 % given in the file `manifest.txt'. See also `legal.txt' for additional
22 % information.
24 % The list of derived (unpacked) files belonging to the distribution
25 % and covered by LPPL is defined by the unpacking scripts (with
26 % extension .ins) which are part of the distribution.
28 % \fi
30 % \iffalse
31 %%% From File: ltalloc.dtx
32 %<*driver>
33 % \fi
34 \ProvidesFile{ltalloc.dtx}
35              [1996/07/26 v1.1c LaTeX Kernel (allocation)]
36 % \iffalse
37 \documentclass{ltxdoc}
38 \GetFileInfo{ltalloc.dtx}
39 \title{\filename}
40 \date{\filedate}
41  \author{%
42   Johannes Braams\and
43   David Carlisle\and
44   Alan Jeffrey\and
45   Leslie Lamport\and
46   Frank Mittelbach\and
47   Chris Rowley\and
48   Rainer Sch\"opf}
49 \begin{document}
50 \MaintainedByLaTeXTeam{latex}
51 \maketitle
52  \DocInput{\filename}
53 \end{document}
54 %</driver>
55 % \fi
58 % \changes{v1.1a}{1994/05/16}{(ASAJ) Split from ltinit.dtx.}
59 % \changes{v1.1b}{1995/10/25}{General doc improvements}
61 % \section{Counters}
63 % This section deals with counter and other variable allocation.
65 % \StopEventually{}
67 %    \begin{macrocode}
68 %<*2ekernel>
69 %    \end{macrocode}
71 % The following are from plain \TeX:
72 % \begin{description}
73 % \item[\cs{z@}] A zero dimen or number.  It's more efficient to write
74 %               |\parindent\z@| than |\parindent 0pt|.
75 % \item[\cs{@ne}]         The number 1.
76 % \item[\cs{m@ne}]        The number $-1$.
77 % \item[\cs{tw@}]         The number 2.
78 % \item[\cs{sixt@@n }]    The number 16.
79 % \item[\cs{@m}]          The number 1000.
80 % \item[\cs{@MM}]         The number 20000.
81 % \end{description}
83 % \begin{macro}{\@xxxii}
84 % The constant $32$.
85 %    \begin{macrocode}
86 \chardef\@xxxii=32
87 %    \end{macrocode}
88 % \end{macro}
90 % \begin{macro}{\@Mi}
91 % \begin{macro}{\@Mii}
92 % \begin{macro}{\@Miii}
93 % \begin{macro}{\@miv}
94 % Constants $1001$--$1004$.
95 %    \begin{macrocode}
96 \mathchardef\@Mi=10001
97 \mathchardef\@Mii=10002
98 \mathchardef\@Miii=10003
99 \mathchardef\@Miv=10004
100 %    \end{macrocode}
101 % \end{macro}
102 % \end{macro}
103 % \end{macro}
104 % \end{macro}
106 % \changes{v1.0d}{1994/03/28}
107 %     {Redefinition of `new' allocations removed.}
109 % \begin{macro}{\@tempcnta}
110 % \begin{macro}{\@tempcntb}
111 % Scratch count registers used by \LaTeX\ kernel commands.
112 %    \begin{macrocode}
113 \newcount\@tempcnta
114 \newcount\@tempcntb
115 %    \end{macrocode}
116 % \end{macro}
117 % \end{macro}
119 % \begin{macro}{\if@tempswa}
120 % General boolean switch used by \LaTeX\ kernel commands.
121 %    \begin{macrocode}
122 \newif\if@tempswa
123 %    \end{macrocode}
124 % \end{macro}
126 % \begin{macro}{\@tempdima}
127 % \begin{macro}{\@tempdimb}
128 % \begin{macro}{\@tempdimc}
129 % Scratch dimen registers used by \LaTeX\ kernel commands.
130 %    \begin{macrocode}
131 \newdimen\@tempdima
132 \newdimen\@tempdimb
133 \newdimen\@tempdimc
134 %    \end{macrocode}
135 % \end{macro}
136 % \end{macro}
137 % \end{macro}
139 % \begin{macro}{\@tempboxa}
140 % Scratch box register used by \LaTeX\ kernel commands.
141 %    \begin{macrocode}
142 \newbox\@tempboxa
143 %    \end{macrocode}
144 % \end{macro}
146 % \begin{macro}{\@tempskipa}
147 % \begin{macro}{\@tempskipb}
148 % Scratch skip registers used by \LaTeX\ kernel commands.
149 %    \begin{macrocode}
150 \newskip\@tempskipa
151 \newskip\@tempskipb
152 %    \end{macrocode}
153 % \end{macro}
154 % \end{macro}
156 % \begin{macro}{\@temptokena}
157 % Scratch token register used by \LaTeX\ kernel commands.
158 %    \begin{macrocode}
159 \newtoks\@temptokena
160 %    \end{macrocode}
161 % \end{macro}
164 % \begin{macro}{\@flushglue}
165 % Glue used for |\right|- \& |\leftskip|  = 0pt plus 1fil
166 %    \begin{macrocode}
167 \newskip\@flushglue \@flushglue = 0pt plus 1fil
168 %    \end{macrocode}
169 % \end{macro}
171 %    \begin{macrocode}
172 %</2ekernel>
173 %    \end{macrocode}
175 % \Finale
176 \endinput