summaryrefslogtreecommitdiff
path: root/tex/context/base/font-otb.lua
diff options
context:
space:
mode:
Diffstat (limited to 'tex/context/base/font-otb.lua')
-rw-r--r--tex/context/base/font-otb.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/tex/context/base/font-otb.lua b/tex/context/base/font-otb.lua
index 04e289ba9..c37058d34 100644
--- a/tex/context/base/font-otb.lua
+++ b/tex/context/base/font-otb.lua
@@ -45,8 +45,8 @@ local function gref(descriptions,n)
local num, nam = { }, { }
for i=2,#n do -- first is likely a key
local ni = n[i]
- num[i] = format("U+%05X",ni)
- nam[i] = descriptions[ni].name or "?"
+ num[i-1] = format("U+%05X",ni)
+ nam[i-1] = descriptions[ni].name or "?"
end
return format("%s (%s)",concat(num," "), concat(nam," "))
else