blob: 4b332cfb975f273034cdc2466d1275d19e1a893b (
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
35
36
|
%D \module
%D [ file=lang-run,
%D version=2005.09.08,
%D title=\CONTEXT\ Language Macros,
%D subtitle=Runtime Macros,
%D author=Hans Hagen,
%D date=\currentdate,
%D copyright={PRAGMA / Hans Hagen \& Ton Otten}]
%C
%C This module is part of the \CONTEXT\ macro||package and is
%C therefore copyrighted by \PRAGMA. See mreadme.pdf for
%C details.
%D [This code is hooked into the core macros and saves some
%D format space.]
\unprotect
\gdef\showpatterns
{\bgroup
\def\doshowpatterns##1##2##3##4% language number encoding mapping
{\NC##1\NC##3\NC##4\NC##2\NC
\specificlanguageparameter{##1}\s!lefthyphenmin \NC
\specificlanguageparameter{##1}\s!righthyphenmin\NC\NR}%
\starttabulate[|c|c|c|c|c|c|]
\HL
\NC \bf language \NC \bf encoding \NC \bf mapping \NC \bf number \NC
\bf left\low{min} \NC
\bf right\low{min} \NC \NR
\HL
\preloadedpmessage
\HL
\stoptabulate
\egroup}
\protect \endinput
|