summaryrefslogtreecommitdiff
path: root/tex/context/base/mkiv/node-pro.lua
diff options
context:
space:
mode:
Diffstat (limited to 'tex/context/base/mkiv/node-pro.lua')
-rw-r--r--tex/context/base/mkiv/node-pro.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/tex/context/base/mkiv/node-pro.lua b/tex/context/base/mkiv/node-pro.lua
index 5bb396d86..b6b130588 100644
--- a/tex/context/base/mkiv/node-pro.lua
+++ b/tex/context/base/mkiv/node-pro.lua
@@ -76,16 +76,16 @@ do
local tracer = processors.tracer
- local function pre_linebreak_filter(head,groupcode) -- ,size,packtype,direction
+ local function pre_linebreak_filter(head,groupcode)
local found = force_processors or has_glyph(head)
if found then
if trace_callbacks then
local before = count_nodes(head,true)
- head = actions(head,groupcode) -- ,size,packtype,direction
+ head = actions(head,groupcode)
local after = count_nodes(head,true)
tracer("pre_linebreak",head,groupcode,before,after,true)
else
- head = actions(head,groupcode) -- ,size,packtype,direction
+ head = actions(head,groupcode)
end
elseif trace_callbacks then
local n = count_nodes(head,false)