diff options
Diffstat (limited to 'tex/context/base/node-ini.lua')
-rw-r--r-- | tex/context/base/node-ini.lua | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/tex/context/base/node-ini.lua b/tex/context/base/node-ini.lua index be1eb77bf..5a3986c3a 100644 --- a/tex/context/base/node-ini.lua +++ b/tex/context/base/node-ini.lua @@ -281,19 +281,18 @@ local hlist_code = nodecodes.hlist local vlist_code = nodecodes.vlist local glue_code = nodecodes.glue ---~ if t.id == glue_code then ---~ local s = t.spec ---~ print(t) ---~ print(s,s and s.writable) ---~ if s and s.writable then ---~ free_node(s) ---~ end ---~ t.spec = nil ---~ end +-- if t.id == glue_code then +-- local s = t.spec +-- print(t) +-- print(s,s and s.writable) +-- if s and s.writable then +-- free_node(s) +-- end +-- t.spec = nil +-- end local function remove(head, current, free_too) local t = current ---~ print(t) head, current = remove_node(head,current) if t then if free_too then |