r3tex

custom LuaTeX format
git clone git://git.rr3.xyz/r3tex
Log | Files | Refs | README | LICENSE

commit 646d46568af69a88e4a68f8d6fc437907a05b945
parent 2be90569b326ae6a1cc862a0c7b6769b3550d30b
Author: robert <robertrussell.72001@gmail.com>
Date:   Sun, 30 Jan 2022 14:17:42 -0800

Move constants from alloc to util

Diffstat:
Malloc.tex | 7-------
Mutil.tex | 7+++++++
2 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/alloc.tex b/alloc.tex @@ -83,13 +83,6 @@ \fi } -% TODO do these belong here? -\chardef\maxchar=1114111 -\newcount\maxcount \maxcount="7FFFFFFF -\newdimen\maxdimen \maxdimen=16383.99999pt -\newskip\centering \centering=0pt plus1000pt minus1000pt -\newbox\voidbox - % Temporaries of various types: \countdef\countA=30 \countdef\countB=31 \countdef\countC=32 \dimendef\dimenA=30 \dimendef\dimenB=31 \dimendef\dimenC=32 diff --git a/util.tex b/util.tex @@ -27,6 +27,13 @@ \def\null{\hbox{}} \def\m@th{\mathsurround=0pt } +% Special constants +\chardef\maxchar=1114111 +\newcount\maxcount \maxcount="7FFFFFFF +\newdimen\maxdimen \maxdimen=16383.99999pt +\newskip\centering \centering=0pt plus1000pt minus1000pt +\newbox\voidbox + % Expansion control \def\nea{\noexpand\ea} \def\eonce#1{\unexpanded\ea{#1}}