summaryrefslogtreecommitdiff
path: root/tex/context/modules/mkiv/m-catchword.mkiv
diff options
context:
space:
mode:
Diffstat (limited to 'tex/context/modules/mkiv/m-catchword.mkiv')
-rw-r--r--tex/context/modules/mkiv/m-catchword.mkiv6
1 files changed, 3 insertions, 3 deletions
diff --git a/tex/context/modules/mkiv/m-catchword.mkiv b/tex/context/modules/mkiv/m-catchword.mkiv
index 86a3a2d55..98f0132fd 100644
--- a/tex/context/modules/mkiv/m-catchword.mkiv
+++ b/tex/context/modules/mkiv/m-catchword.mkiv
@@ -60,19 +60,19 @@ local function set_catchword(t)
end
local page = tex.getbox(t.box)
local head = nodes.copy_list(first,last.next)
- head = nodes.insert_before(head,head,nodes.pool.glue(1,1,1))
+ head = nodes.insertbefore(head,head,nodes.pool.glue(1,1,1))
local line = nodes.hpack(head,page.width,"exactly")
if CONTEXTLMTXMODE > 0 then
line.yoffset = -t.voffset
line.xoffset = t.hoffset
else
line.shift = t.hoffset
- line = nodes.insert_before(line,line,nodes.pool.kern(t.voffset-line.height))
+ line = nodes.insertbefore(line,line,nodes.pool.kern(t.voffset-line.height))
line = nodes.vpack(line)
end
line.height = 0
line.depth = 0
- node.insert_after(page.list,nodes.tail(page.list),line)
+ nodes.insertafter(page.list,nodes.tail(page.list),line)
logs.report("catchword","appending %a on page %i",nodes.toutf(head),tex.getcount("realpageno"))
end