summaryrefslogtreecommitdiff
path: root/tex/context/base/math-act.lua
diff options
context:
space:
mode:
Diffstat (limited to 'tex/context/base/math-act.lua')
-rw-r--r--tex/context/base/math-act.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/tex/context/base/math-act.lua b/tex/context/base/math-act.lua
index eaeb15656..51a06a087 100644
--- a/tex/context/base/math-act.lua
+++ b/tex/context/base/math-act.lua
@@ -246,16 +246,16 @@ local function extensiblecode(font,unicode)
next = character.next
end
local char = chardata[unicode]
- local matharrow = char and char.matharrow
+ local mathextensible = char and char.mathextensible
if character.horiz_variants then
if character.vert_variants then
return { e_mixed, code, character }
else
- local e = matharrow and extensibles[matharrow]
+ local e = mathextensible and extensibles[mathextensible]
return e and { e, code, character } or unknown
end
elseif character.vert_variants then
- local e = matharrow and extensibles[matharrow]
+ local e = mathextensible and extensibles[mathextensible]
return e and { e, code, character } or unknown
else
return unknown