summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Gesang <phg42.2a@gmail.com>2013-05-13 21:33:52 +0200
committerPhilipp Gesang <phg42.2a@gmail.com>2013-05-13 21:33:52 +0200
commit60d61d05ea89cc9e9f6a97fa4a807d649c70c3d3 (patch)
treed73c7c81b84e085df806a6512555e98a8f805c7d
parentdeee6a29cb7ef11e15d1f9376d5f56516b46d726 (diff)
downloadluaotfload-60d61d05ea89cc9e9f6a97fa4a807d649c70c3d3.tar.gz
silence glyphlist loader
-rw-r--r--luaotfload-override.lua5
1 files changed, 3 insertions, 2 deletions
diff --git a/luaotfload-override.lua b/luaotfload-override.lua
index 6c44f35..51d2749 100644
--- a/luaotfload-override.lua
+++ b/luaotfload-override.lua
@@ -147,10 +147,11 @@ if fonts then --- need to be running TeX
if k == "unicodes" then
local glyphlist = resolvers.findfile"luaotfload-glyphlist.lua"
if glyphlist then
- names_report("both", 0, "load", "loading the Adobe glyph list")
+ names_report("log", 1, "load", "loading the Adobe glyph list")
else
glyphlist = resolvers.findfile"font-age.lua"
- names_report("both", 0, "load", "loading the extended glyph list from ConTeXt")
+ names_report("both", 0, "load",
+ "loading the extended glyph list from ConTeXt")
end
local unicodes = dofile(glyphlist)
fonts.encodings.agl = { unicodes = unicodes }