The LaTeX kernel defines a number of tokens that are used throughout the LaTeX source and the standard LaTeX classes. For example:
\def\hb@xt@{\hbox to}
This particular one is commented as:
The next one is another 100 tokens worth.
My understanding is that the tokens are saved by abbreviating the to and that is where the tokens are saved.
Similarly,
\@height saves 5 tokens at the cost in time of one macro expansion by defining the macro \def\@height{height} to replace the TeX height and so on with many more examples.
However, in many cases the conversion, in my opinion, makes the code difficult to read. With to-days's computer power, is this still a good practice? Would you recommend that one should optimize final code in such a manner?
plain.texis a better source for that than the Latex2 sources. – Charles Stewart Dec 03 '10 at 12:24