diff options
Diffstat (limited to 'tex/context/base/typo-rep.lua')
-rw-r--r-- | tex/context/base/typo-rep.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tex/context/base/typo-rep.lua b/tex/context/base/typo-rep.lua index 5519207e2..f90ce16ef 100644 --- a/tex/context/base/typo-rep.lua +++ b/tex/context/base/typo-rep.lua @@ -13,7 +13,7 @@ if not modules then modules = { } end modules ['typo-rep'] = { local trace_stripping = false trackers.register("nodes.stripping", function(v) trace_stripping = v end) trackers.register("fonts.stripping", function(v) trace_stripping = v end) -local report_fonts = logs.new("fonts") +local report_stripping = logs.new("fonts","stripping") local nodes, node = nodes, node @@ -50,20 +50,20 @@ end local function process(what,head,current,char) if what == true then if trace_stripping then - report_fonts("deleting 0x%05X from text",char) + report_stripping("deleting 0x%05X from text",char) end head, current = delete_node(head,current) elseif type(what) == "function" then head, current = what(head,current) current = current.next if trace_stripping then - report_fonts("processing 0x%05X in text",char) + report_stripping("processing 0x%05X in text",char) end elseif what then -- assume node head, current = replace_node(head,current,copy_node(what)) current = current.next if trace_stripping then - report_fonts("replacing 0x%05X in text",char) + report_stripping("replacing 0x%05X in text",char) end end return head, current |