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.lua12
1 files changed, 9 insertions, 3 deletions
diff --git a/tex/context/base/font-log.lua b/tex/context/base/font-log.lua
index 773108e44..41da75378 100644
--- a/tex/context/base/font-log.lua
+++ b/tex/context/base/font-log.lua
@@ -67,14 +67,20 @@ end
statistics.register("loaded fonts", function()
if next(usedfonts) then
local t, n = { }, 0
+ local treatmentdata = fonts.treatments.data
for name, used in table.sortedhash(usedfonts) do
n = n + 1
+ local base = basename(name)
if complete then
- t[n] = used .. "->" .. basename(name)
+ t[n] = format("%s -> %s",used,base)
else
- t[n] = basename(name)
+ t[n] = base
+ end
+ local treatment = treatmentdata[base]
+ if treatment and treatment.comment then
+ t[n] = format("%s (%s)",t[n],treatment.comment)
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)