blob: d75597a19d4a207bdf28910f85b7d062407862ba (
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
|
% utf8off.tex ... switches off the encTeX \mubyte tables
% ------------------------------------------------------
% Petr Olsak, Oct. 2012
%
% You can write
%
% \input utf8off
%
% at the beginning of your old ISO-8859-2 encoded document and all
% processing is in the old manner.
% If encTeX is not detected, nothing is done.
\ifx\mubytein\undefined
\message{WARNING: encTeX isn't initialised, settings are ignored}
\expandafter\endinput \fi
\message{The encTeX's \noexpand\mubyte tables are switched off.}
\mubytein=0 \mubyteout=0 \mubytelog=0
\ifx\xprncodes\undefined \else \xprncodes=1 \fi
\def\clearmubyte{{\count0=128
\loop \lccode`@=\count0 \lowercase{\mubyte @@\endmubyte}\advance \count0 by1
\ifnum\count0<256 \repeat}}
% end of file
|