summaryrefslogtreecommitdiff
path: root/tex/context/base/mkxl/node-res.lmt
diff options
context:
space:
mode:
Diffstat (limited to 'tex/context/base/mkxl/node-res.lmt')
-rw-r--r--tex/context/base/mkxl/node-res.lmt8
1 files changed, 7 insertions, 1 deletions
diff --git a/tex/context/base/mkxl/node-res.lmt b/tex/context/base/mkxl/node-res.lmt
index 4c456b263..93dc65b7b 100644
--- a/tex/context/base/mkxl/node-res.lmt
+++ b/tex/context/base/mkxl/node-res.lmt
@@ -392,7 +392,7 @@ function nutpool.boxrule(width,height,depth) -- w/h/d == nil will let them adapt
return n
end
-function nutpool.leader(width,list)
+local function new_leader(width,list)
local n = copy_nut(cleader)
if width then
setwidth(n,width)
@@ -403,6 +403,12 @@ function nutpool.leader(width,list)
return n
end
+nutpool.leader = new_leader
+
+function nodepool.leader(width,list)
+ return tonode(new_leader(width,list and tonut(list)))
+end
+
function nutpool.leftmarginkern(glyph,width)
local n = copy_nut(left_margin_kern)
if not glyph then