summaryrefslogtreecommitdiff
path: root/tex/context/base/typo-rep.lua
diff options
context:
space:
mode:
Diffstat (limited to 'tex/context/base/typo-rep.lua')
-rw-r--r--tex/context/base/typo-rep.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/tex/context/base/typo-rep.lua b/tex/context/base/typo-rep.lua
index 6534bf457..8451ce52b 100644
--- a/tex/context/base/typo-rep.lua
+++ b/tex/context/base/typo-rep.lua
@@ -54,20 +54,20 @@ end
local function process(what,head,current,char)
if what == true then
if trace_stripping then
- report_stripping("deleting 0x%05X from text",char)
+ report_stripping("deleting %C 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_stripping("processing 0x%05X in text",char)
+ report_stripping("processing %C 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_stripping("replacing 0x%05X in text",char)
+ report_stripping("replacing %C in text",char)
end
end
return head, current