summaryrefslogtreecommitdiff
path: root/tex/context/base/font-chk.lua
diff options
context:
space:
mode:
authorHans Hagen <pragma@wxs.nl>2010-06-23 12:45:00 +0200
committerHans Hagen <pragma@wxs.nl>2010-06-23 12:45:00 +0200
commitcb0c6e65703831a34d0ba909f703994a0825beac (patch)
treed9a27e54347ef050c8596ac0c6703da13afca2b5 /tex/context/base/font-chk.lua
parent37850ef35f93a14936b4d7d33790d14c050bbbb4 (diff)
downloadcontext-cb0c6e65703831a34d0ba909f703994a0825beac.tar.gz
beta 2010.06.23 12:45
Diffstat (limited to 'tex/context/base/font-chk.lua')
-rw-r--r--tex/context/base/font-chk.lua4
1 files changed, 3 insertions, 1 deletions
diff --git a/tex/context/base/font-chk.lua b/tex/context/base/font-chk.lua
index 32fdf8894..dc13a4aee 100644
--- a/tex/context/base/font-chk.lua
+++ b/tex/context/base/font-chk.lua
@@ -8,6 +8,8 @@ if not modules then modules = { } end modules ['font-chk'] = {
-- possible optimization: delayed initialization of vectors
+local report_fonts = logs.new("fonts")
+
fonts = fonts or { }
fonts.checkers = fonts.checkers or { }
@@ -40,7 +42,7 @@ function fonts.register_message(font,char,message)
messages[message] = category
end
if not category[char] then
- logs.report("fonts","char U+%04X in font '%s' with id %s: %s",char,tfmdata.fullname,font,message)
+ report_fonts("char U+%04X in font '%s' with id %s: %s",char,tfmdata.fullname,font,message)
category[char] = true
end
end