summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/tex/context/modules/mkiv/m-nodechart.lua
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/tex/context/modules/mkiv/m-nodechart.lua')
-rw-r--r--Master/texmf-dist/tex/context/modules/mkiv/m-nodechart.lua10
1 files changed, 5 insertions, 5 deletions
diff --git a/Master/texmf-dist/tex/context/modules/mkiv/m-nodechart.lua b/Master/texmf-dist/tex/context/modules/mkiv/m-nodechart.lua
index da80faed9ec..8273f365a91 100644
--- a/Master/texmf-dist/tex/context/modules/mkiv/m-nodechart.lua
+++ b/Master/texmf-dist/tex/context/modules/mkiv/m-nodechart.lua
@@ -133,23 +133,23 @@ local function flow_nodes_to_chart(specification)
end
else
if pre then
- commands.flow_set_connection("+rl","",tostring(pre))
+ commands.flow_set_connection("rl","",tostring(pre))
end
if rep then
- commands.flow_set_connection("rl","",tostring(rep))
+ commands.flow_set_connection("+rl","",tostring(rep))
end
if pos then
commands.flow_set_connection("-rl","",tostring(pos))
end
commands.flow_stop_cell()
if pre then
- n = flow_nodes_to_chart{ head = pre, comment = "prebreak", x = x+1, y = y-2 }
+ n = flow_nodes_to_chart{ head = pre, comment = "prebreak", x = x+1, y = y-1 }
end
if rep then
- n = flow_nodes_to_chart{ head = rep, comment = "replacement", x = x+1, y = y-1 }
+ n = flow_nodes_to_chart{ head = rep, comment = "replacement", x = x+3, y = y-1 }
end
if pos then
- n = flow_nodes_to_chart{ head = pos, comment = "postbreak", x = x+1, y = y }
+ n = flow_nodes_to_chart{ head = pos, comment = "postbreak", x = x+2, y = y-1 }
end
end
elseif nodecode == "hlist" then