summaryrefslogtreecommitdiff
path: root/tex/context/base/mkiv/font-map.lua
diff options
context:
space:
mode:
Diffstat (limited to 'tex/context/base/mkiv/font-map.lua')
-rw-r--r--tex/context/base/mkiv/font-map.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/tex/context/base/mkiv/font-map.lua b/tex/context/base/mkiv/font-map.lua
index d4a1b4594..66cf2db39 100644
--- a/tex/context/base/mkiv/font-map.lua
+++ b/tex/context/base/mkiv/font-map.lua
@@ -192,8 +192,8 @@ local function tounicode(unicode)
end
-- no real gain on runs
---
--- local hash = setmetatableindex(function(t,u)
+
+-- local hash = table.setmetatableindex(function(t,u)
-- local v
-- if u < 0xD7FF or (u > 0xDFFF and u <= 0xFFFF) then
-- v = f_single(u)
@@ -209,7 +209,7 @@ end
-- if type(unicode) == "table" then
-- local t = { }
-- for l=1,#unicode do
--- t[l] = hash[u]
+-- t[l] = hash[unicode[l]]
-- end
-- return concat(t)
-- else