summaryrefslogtreecommitdiff
path: root/luaotfload-override.lua
diff options
context:
space:
mode:
authorPhilipp Gesang <phg42.2a@gmail.com>2014-02-09 16:54:13 +0100
committerPhilipp Gesang <phg42.2a@gmail.com>2014-02-09 16:54:13 +0100
commit2c6feb979da6435bb9f6636a46be576f688f7f78 (patch)
tree9a54c17e9a1730aeb65453f27f010c4f8d57171f /luaotfload-override.lua
parente069690a7f747f7b17baed6974168192857eb485 (diff)
downloadluaotfload-2c6feb979da6435bb9f6636a46be576f688f7f78.tar.gz
[log,*] s/log.names_report()/logs.report()/g
Closing #169 Signed-off-by: Philipp Gesang <phg42.2a@gmail.com>
Diffstat (limited to 'luaotfload-override.lua')
-rw-r--r--luaotfload-override.lua8
1 files changed, 4 insertions, 4 deletions
diff --git a/luaotfload-override.lua b/luaotfload-override.lua
index e726f6f..b75530b 100644
--- a/luaotfload-override.lua
+++ b/luaotfload-override.lua
@@ -10,7 +10,7 @@ local findfile = resolvers.findfile
local encodings = fonts.encodings
local log = luaotfload.log
-local names_report = log.names_report
+local report = log.report
--[[doc--
@@ -38,11 +38,11 @@ setmetatable(fonts.encodings.agl, { __index = function (t, k)
end
local glyphlist = findfile "luaotfload-glyphlist.lua"
if glyphlist then
- names_report("log", 1, "load", "loading the Adobe glyph list")
+ report ("log", 1, "load", "loading the Adobe glyph list")
else
glyphlist = findfile "font-age.lua"
- names_report("both", 0, "load",
- "loading the extended glyph list from ConTeXt")
+ report ("both", 0, "load",
+ "loading the extended glyph list from ConTeXt")
end
local unicodes = dofile(glyphlist)
encodings.agl = { unicodes = unicodes }