summaryrefslogtreecommitdiff
path: root/tex/context/base/font-log.lua
diff options
context:
space:
mode:
Diffstat (limited to 'tex/context/base/font-log.lua')
-rw-r--r--tex/context/base/font-log.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/tex/context/base/font-log.lua b/tex/context/base/font-log.lua
index 8bc12a215..773108e44 100644
--- a/tex/context/base/font-log.lua
+++ b/tex/context/base/font-log.lua
@@ -43,7 +43,7 @@ function loggers.onetimemessage(font,char,message,reporter)
if not reporter then
reporter = report_defining
end
- reporter("char U+%05X in font '%s' with id %s: %s",char,tfmdata.properties.fullname,font,message)
+ reporter("char %U in font %a with id %s: %s",char,tfmdata.properties.fullname,font,message)
category[char] = true
end
end
@@ -52,7 +52,7 @@ function loggers.register(tfmdata,source,specification) -- save file name in spe
if tfmdata and specification and specification.specification then
local name = lower(specification.name)
if trace_defining and not usedfonts[name] then
- report_defining("registering %s as %s (used: %s)",file.basename(specification.name),source,file.basename(specification.filename))
+ report_defining("registering %a as %a, used %a",file.basename(specification.name),source,file.basename(specification.filename))
end
specification.source = source
-- loadedfonts[lower(specification.specification)] = specification
@@ -75,6 +75,6 @@ statistics.register("loaded fonts", function()
t[n] = basename(name)
end
end
- return (n > 0 and format("%s files: %s",n,concat(t," "))) or "none"
+ return n > 0 and format("%s files: %s",n,concat(t," ")) or "none"
end
end)