Andreas Matthias <[email protected]> a écrit: > > In the following example I expected \mybox to contain `abc' > eventually. Instead it only contains `bc'. Why is the `a' > missing?
You must assign n1 to box.head, as in
[...]
n1.next = box.head
box.head = n1
tail = node.slide(n1)
[...]
otherwise the box still points to its former head as its first node
(which has indeed n1 as its prev node, but it is ignored because scanning
begins at the former head).
Best,
Paul
