summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/tex/context/base/mkiv/node-typ.lua
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/tex/context/base/mkiv/node-typ.lua')
-rw-r--r--Master/texmf-dist/tex/context/base/mkiv/node-typ.lua14
1 files changed, 7 insertions, 7 deletions
diff --git a/Master/texmf-dist/tex/context/base/mkiv/node-typ.lua b/Master/texmf-dist/tex/context/base/mkiv/node-typ.lua
index 2d84e07a3fc..06d0f13c28a 100644
--- a/Master/texmf-dist/tex/context/base/mkiv/node-typ.lua
+++ b/Master/texmf-dist/tex/context/base/mkiv/node-typ.lua
@@ -18,6 +18,7 @@ local tonut = nuts.tonut
local setfield = nuts.setfield
local setlink = nuts.setlink
local setchar = nuts.setchar
+----- setattrlist = nuts.setattrlist
local getfield = nuts.getfield
local getfont = nuts.getfont
@@ -25,7 +26,6 @@ local getfont = nuts.getfont
local hpack_node_list = nuts.hpack
local vpack_node_list = nuts.vpack
local full_hpack_list = nuts.fullhpack
-local copy_node = nuts.copy
local nodepool = nuts.pool
local new_glyph = nodepool.glyph
@@ -34,19 +34,19 @@ local new_glue = nodepool.glue
local utfvalues = utf.values
local currentfont = font.current
-local currentattr = node.current_attr
+----- current_attr = node.current_attr
local fontparameters = fonts.hashes.parameters
local function tonodes(str,fontid,spacing,templateglyph) -- quick and dirty
local head, prev = nil, nil
--- local attrid = nil
+ -- local attrid = nil
if not fontid then
if templateglyph then
fontid = getfont(templateglyph)
--- attrid = getfield(templateglyph,"attr")
+ -- attrid = setattrlist(templateglyph)
else
fontid = currentfont()
--- attrid = currentattr()
+ -- attrid = current_attr()
end
end
local fp = fontparameters[fontid]
@@ -75,10 +75,10 @@ local function tonodes(str,fontid,spacing,templateglyph) -- quick and dirty
if not next then
-- nothing
elseif not head then
--- setfield(next,"attr",attrid)
+ -- setattrlist(next,attrid)
head = next
else
--- setfield(next,"attr",attrid)
+ -- setattrlist(next,attrid)
setlink(prev,next)
end
prev = next