diff options
Diffstat (limited to 'org/spine.org')
-rw-r--r-- | org/spine.org | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/org/spine.org b/org/spine.org index f6e7faa..51c649c 100644 --- a/org/spine.org +++ b/org/spine.org @@ -1293,8 +1293,6 @@ if ((_opt_action.debug_do) writeln("--->\nstepX commence → (document abstraction) [", manifest.src.filename, "]"); } auto doc = spineAbstraction!()(_env, program_info, _opt_action, _cfg, manifest, _make_and_meta_struct); -auto doc_abstraction = doc.abstraction; -auto doc_matters = doc.matters; if ((doc.matters.opt.action.debug_do) || (_opt_action.debug_do_stages) ) { @@ -1416,7 +1414,7 @@ if (!(doc.matters.opt.action.skip_output)) { if ((_opt_action.debug_do) || (_opt_action.debug_do_stages)) { writeln("step5 commence → (process outputs) [", manifest.src.filename, "]"); } - doc.abstraction.outputHub!()(doc.matters); + doc.outputHub!(); if ((_opt_action.debug_do) || (_opt_action.debug_do_stages)) { writeln("- step5 complete for [", manifest.src.filename, "]"); } |