blob: 04f18dae475b61d77d88e197565fc42c26c4996b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
% $Id$
% Karl Berry, originally written 2008. public domain.
% must be done first (activation of primitives)
\input lualatexiniconfig.tex
% settings inherited from pdftex
\input pdftexconfig.tex
% pdf output by default
% prevent latex.ltx from \dump-ing
\let\DUMP\dump
\let\dump\relax
% the usual format initialization.
\scrollmode
\input latex.ltx
% some commands in the kernel need patchin to work with luatex
\input lualatex-patch-kernel.tex
% latex.ltx sets \everyjob, so this must come afterwards
\input lualatexquotejobname.tex
% latex.ltx sets wrong (T1) \lccodes, \uccodes for the "80-"ff range
\input lualatex-reset-codes.tex % reset them
\input luatex-unicode-letters.tex % set codes based on Unicode (full range)
% Note: unlike xelatex, we don't need to load unicode-letters before latex.ltx
% (hence hyphenation patterns) due to diferences in \patterns hendling
% restore \dump for derived formats (mylatex, etc) that might use it
\let\dump\DUMP
\let\DUMP\undefined
\dump
|