blob: 909cf5e94731bceeb59e7eb7261fcce55c74b70e (
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
|
%D \module
%D [ file=unic-251,
%D version=2006.04.20,
%D title=\CONTEXT\ \UNICODE\ Macros,
%D subtitle=Vector 251,
%D author=Hans Hagen,
%D date=\currentdate,
%D copyright={PRAGMA ADE \& \CONTEXT\ Development Team}]
\unprotect
\def\ffligature {ff}
\def\filigature {fi}
\def\flligature {fl}
\def\ffiligature {ffi}
\def\fflligature {ffl}
\def\ftligature {ft}
\def\stligature {st}
\startunicodevector 251
\expandafter\strippedcsname
\ifcase\numexpr#1\relax
\ffligature \or % LATIN SMALL LIGATURE FF
\filigature \or % LATIN SMALL LIGATURE FI
\flligature \or % LATIN SMALL LIGATURE FL
\ffiligature \or % LATIN SMALL LIGATURE FFI
\fflligature \or % LATIN SMALL LIGATURE FFL
\ftligature \or % LATIN SMALL LIGATURE FT
\stligature \else % LATIN SMALL LIGATURE ST
\unknownchar
\fi
\stopunicodevector
\protect \endinput
|