diff options
author | Hans Hagen <pragma@wxs.nl> | 2010-10-20 13:11:00 +0200 |
---|---|---|
committer | Hans Hagen <pragma@wxs.nl> | 2010-10-20 13:11:00 +0200 |
commit | db84fb28effa91e82c83151168a27c8d85759973 (patch) | |
tree | 8736a3188eaadd2c6c57e547216678c504d28d13 /tex/context/base/mult-cld.lua | |
parent | 33b756529488b2cc6bd6a2786361f8099c023820 (diff) | |
download | context-db84fb28effa91e82c83151168a27c8d85759973.tar.gz |
beta 2010.10.20 13:11
Diffstat (limited to 'tex/context/base/mult-cld.lua')
-rw-r--r-- | tex/context/base/mult-cld.lua | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tex/context/base/mult-cld.lua b/tex/context/base/mult-cld.lua index 2ff0568c1..373300d69 100644 --- a/tex/context/base/mult-cld.lua +++ b/tex/context/base/mult-cld.lua @@ -345,6 +345,8 @@ function context.direct(first,...) end end +-- todo: use flush directly + function context.char(k) -- todo: if catcode == letter or other then just the utf if type(k) == "table" then for i=1,#k do @@ -355,6 +357,10 @@ function context.char(k) -- todo: if catcode == letter or other then just the ut end end +function context.utfchar(k) + context(utfchar(k)) +end + function context.chardef(cs,u) context(format([[\chardef\%s=%s\relax]],k)) end |