diff options
author | Marius <mariausol@gmail.com> | 2012-11-08 00:40:14 +0200 |
---|---|---|
committer | Marius <mariausol@gmail.com> | 2012-11-08 00:40:14 +0200 |
commit | 1d0171ce126552c90869eab4fe4f0679bf459ce6 (patch) | |
tree | b65005d242667867377c0396fce8e0ecc123546a /tex/context/base/char-ini.lua | |
parent | a348d7ad3b4077c1ce1cf65d7f2ab21487aad3b3 (diff) | |
download | context-1d0171ce126552c90869eab4fe4f0679bf459ce6.tar.gz |
beta 2012.11.07 23:16
Diffstat (limited to 'tex/context/base/char-ini.lua')
-rw-r--r-- | tex/context/base/char-ini.lua | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tex/context/base/char-ini.lua b/tex/context/base/char-ini.lua index 778035ff4..6e14982c7 100644 --- a/tex/context/base/char-ini.lua +++ b/tex/context/base/char-ini.lua @@ -393,6 +393,8 @@ local is_mark = allocate ( tohash { "mn", "ms", } ) +-- to be redone: store checked characters + characters.is_character = is_character characters.is_letter = is_letter characters.is_command = is_command @@ -402,7 +404,7 @@ characters.is_mark = is_mark local mt = { -- yes or no ? __index = function(t,k) if type(k) == "number" then - local c = characters.data[k].category + local c = data[k].category return c and rawget(t,c) else -- avoid auto conversion in data.characters lookups |