summaryrefslogtreecommitdiff
path: root/tex/context/base/node-pro.lua
diff options
context:
space:
mode:
Diffstat (limited to 'tex/context/base/node-pro.lua')
-rw-r--r--tex/context/base/node-pro.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/tex/context/base/node-pro.lua b/tex/context/base/node-pro.lua
index a901616b5..2d04a4d71 100644
--- a/tex/context/base/node-pro.lua
+++ b/tex/context/base/node-pro.lua
@@ -122,9 +122,9 @@ local hpack = node.hpack
function nodes.fasthpack(...) -- todo: pass explicit arguments
enabled = false
- local hp = hpack(...)
+ local hp, b = hpack(...)
enabled = true
- return hp
+ return hp, b
end
callbacks.register('pre_linebreak_filter', processors.pre_linebreak_filter,"all kind of horizontal manipulations (before par break)")