summaryrefslogtreecommitdiff
path: root/tex/context/base/node-fin.lua
diff options
context:
space:
mode:
authorMarius <mariausol@gmail.com>2012-06-30 14:20:15 +0300
committerMarius <mariausol@gmail.com>2012-06-30 14:20:15 +0300
commitbb0eac07417aec9a0da32a54fbdad4553cebcce7 (patch)
tree1d4b886be0d10484570d4ac70f8e42863d49a74d /tex/context/base/node-fin.lua
parentbd618c1d655bd4f520911d1db7d5fa1e0d0cf82d (diff)
downloadcontext-bb0eac07417aec9a0da32a54fbdad4553cebcce7.tar.gz
beta 2012.06.30 12:32
Diffstat (limited to 'tex/context/base/node-fin.lua')
-rw-r--r--tex/context/base/node-fin.lua26
1 files changed, 14 insertions, 12 deletions
diff --git a/tex/context/base/node-fin.lua b/tex/context/base/node-fin.lua
index 84032c22d..eb8864bff 100644
--- a/tex/context/base/node-fin.lua
+++ b/tex/context/base/node-fin.lua
@@ -15,6 +15,7 @@ local attributes, nodes, node = attributes, nodes, node
local has_attribute = node.has_attribute
local copy_node = node.copy
+local find_tail = node.slide
local nodecodes = nodes.nodecodes
local whatcodes = nodes.whatcodes
@@ -686,30 +687,27 @@ local function stacker(namespace,attribute,head,default) -- no triggering, no in
local id = current.id
if id == glyph_code then
check()
- elseif id == rule_code then
- if current.width ~= 0 then
- check()
- end
elseif id == glue_code then
local content = current.leader
if content and check() then
- local ok = false
- current.leader, ok = stacker(namespace,attribute,content,attrib)
+ -- tricky as a leader has to be a list so we cannot inject before
+ local _, ok = stacker(namespace,attribute,content,attrib)
done = done or ok
end
elseif id == hlist_code or id == vlist_code then
local content = current.list
if not content then
- -- skip
+ -- skip
elseif nslistwise then
local a = has_attribute(current,attribute)
+-- print(a,attrib,nslistwise[a],a and attrib ~= a and nslistwise[a])
if a and attrib ~= a and nslistwise[a] then -- viewerlayer
- local p = attrib
- attrib, done = a, true
- head = insert_node_before(head,current,copy_node(nsdata[a]))
- current.list = stacker(namespace,attribute,content,attrib)
+ done = true
+-- print("yes+",a,nsdata[a].data)
+ head = insert_node_before(head,current,copy_node(nsdata[a]))
+ current.list = stacker(namespace,attribute,content,a)
head, current = insert_node_after(head,current,copy_node(nsnone))
- attrib = p
+-- print("yes-",a,nsnone.data)
else
local ok = false
current.list, ok = stacker(namespace,attribute,content,attrib)
@@ -720,6 +718,10 @@ local function stacker(namespace,attribute,head,default) -- no triggering, no in
current.list, ok = stacker(namespace,attribute,content,default)
done = done or ok
end
+ elseif id == rule_code then
+ if current.width ~= 0 then
+ check()
+ end
end
previous = current
current = current.next