summaryrefslogtreecommitdiff
path: root/tex/context/base/node-bck.lua
diff options
context:
space:
mode:
Diffstat (limited to 'tex/context/base/node-bck.lua')
-rw-r--r--tex/context/base/node-bck.lua7
1 files changed, 4 insertions, 3 deletions
diff --git a/tex/context/base/node-bck.lua b/tex/context/base/node-bck.lua
index 1be0669ba..a095ac4c4 100644
--- a/tex/context/base/node-bck.lua
+++ b/tex/context/base/node-bck.lua
@@ -38,6 +38,7 @@ local getsubtype = nuts.getsubtype
local setfield = nuts.setfield
local setattr = nuts.setattr
local setlink = nuts.setlink
+local setlist = nuts.setlist
local traverse = nuts.traverse
local traverse_id = nuts.traverse_id
@@ -60,7 +61,7 @@ local function add_backgrounds(head) -- rather old code .. to be redone
if list then
local head = add_backgrounds(list)
if head then
- setfield(current,"list",head)
+ setlist(current,head)
list = head
end
end
@@ -90,7 +91,7 @@ local function add_backgrounds(head) -- rather old code .. to be redone
if list then
setlink(glue,list)
end
- setfield(current,"list",rule)
+ setlist(current,rule)
end
end
end
@@ -149,7 +150,7 @@ local function add_alignbackgrounds(head)
if list then
setlink(glue,list)
end
- setfield(current,"list",rule)
+ setlist(current,rule)
end
end
end