diff options
Diffstat (limited to 'Master/texmf-dist/tex/context/base/font-log.lua')
-rw-r--r-- | Master/texmf-dist/tex/context/base/font-log.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Master/texmf-dist/tex/context/base/font-log.lua b/Master/texmf-dist/tex/context/base/font-log.lua index af0b2552fb4..97cb4ff7c1a 100644 --- a/Master/texmf-dist/tex/context/base/font-log.lua +++ b/Master/texmf-dist/tex/context/base/font-log.lua @@ -1,6 +1,6 @@ if not modules then modules = { } end modules ['font-log'] = { version = 1.001, - comment = "companion to font-ini.tex", + comment = "companion to font-ini.mkiv", author = "Hans Hagen, PRAGMA-ADE, Hasselt NL", copyright = "PRAGMA ADE / ConTeXt Development Team", license = "see context related readme files" @@ -34,7 +34,7 @@ end function fonts.logger.report(complete) local t = { } - for name, used in table.sortedpairs(fonts.used) do + for name, used in table.sortedhash(fonts.used) do if complete then t[#t+1] = used .. "->" .. file.basename(name) else |