diff options
Diffstat (limited to 'Master/texmf-dist/source/latex/l3kernel/l3box.dtx')
-rw-r--r-- | Master/texmf-dist/source/latex/l3kernel/l3box.dtx | 21 |
1 files changed, 6 insertions, 15 deletions
diff --git a/Master/texmf-dist/source/latex/l3kernel/l3box.dtx b/Master/texmf-dist/source/latex/l3kernel/l3box.dtx index 76c7bc04251..f37e6936f62 100644 --- a/Master/texmf-dist/source/latex/l3kernel/l3box.dtx +++ b/Master/texmf-dist/source/latex/l3kernel/l3box.dtx @@ -35,7 +35,7 @@ % %<*driver|package> \RequirePackage{l3bootstrap} -\GetIdInfo$Id: l3box.dtx 3991 2012-07-16 19:00:35Z joseph $ +\GetIdInfo$Id: l3box.dtx 4259 2012-11-04 17:15:11Z joseph $ {L3 Experimental boxes} %</driver|package> %<*driver> @@ -299,14 +299,14 @@ % % \section{Constant boxes} % -% \begin{variable}{\c_empty_box} +% \begin{variable}[updated = 2012-11-04]{\c_empty_box} % This is a permanently empty box, which is neither set as horizontal % nor vertical. % \end{variable} % % \section{Scratch boxes} % -% \begin{variable}{\l_tmpa_box, \l_tmpb_box} +% \begin{variable}[updated = 2012-11-04]{\l_tmpa_box, \l_tmpb_box} % Scratch boxes for local assignment. These are never used by % the kernel code, and so are safe for use with any \LaTeX3-defined % function. However, they may be overwritten by other non-kernel @@ -913,28 +913,19 @@ % % \subsection{Constant boxes} % -% \begin{variable}{\c_empty_box} +% \begin{variable}{\c_empty_box} +% A box we never use. % \begin{macrocode} -%<*package> -\cs_new_eq:NN \c_empty_box \voidb@x -%</package> -%<*initex> \box_new:N \c_empty_box -%</initex> % \end{macrocode} % \end{variable} % % \subsection{Scratch boxes} % % \begin{variable}{\l_tmpa_box, \l_tmpb_box, \g_tmpa_box, \g_tmpb_box} -% Reuse the \LaTeXe{} scratch box in package mode. +% Scratch boxes. % \begin{macrocode} -%<*package> -\cs_new_eq:NN \l_tmpa_box \@tempboxa -%</package> -%<*initex> \box_new:N \l_tmpa_box -%</initex> \box_new:N \l_tmpb_box \box_new:N \g_tmpa_box \box_new:N \g_tmpb_box |