blob: f8a8c3d64f17812bc7ecba623db3fad3cf27f91e (
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
|
% xu-glhyph.tex
% Wrapper for XeTeX to read glhyph.tex
% Jonathan Kew, 2006-09-13
% Public domain
\begingroup
\expandafter\ifx\csname XeTeXrevision\endcsname\relax
\else
% glhyph.tex includes \catcode and \lccode settings for Latin-1
% but these are harmless (and are written using ^^xx notation)
\let\PATTERNS=\patterns
\def\patterns{% at the \patterns command...
\XeTeXinputencoding "bytes" % read the rest of the file as raw bytes
\PATTERNS % and then load the real patterns
}
\fi
\input glhyph.tex
\endgroup
\endinput
|