blob: 296a96cbff7ba029ba95cb2e0509aec8e50e8fb9 (
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
|
% xu-tkhyph.tex
% Wrapper for XeTeX to read tkhyph.tex
% Jonathan Kew, 2006-08-18
% Public domain
\begingroup
\let\INPUT=\input
\def\input #1 {}
\expandafter\ifx\csname XeTeXrevision\endcsname\relax
\else
\catcode"11=\active
\def^^11{^^^^0131}% dotlessi incorrectly coded as ^^11 (EC: quotedblright)
\let\PATTERNS=\patterns
\def\patterns{%
\INPUT xu-t1.tex
\PATTERNS
}
\fi
\INPUT tkhyph.tex
\endgroup
\endinput
|