summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README5
-rw-r--r--src/luaotfload-database.lua12
-rwxr-xr-xsrc/luaotfload-tool.lua2
3 files changed, 12 insertions, 7 deletions
diff --git a/README b/README
index 75575d2..19c3bd1 100644
--- a/README
+++ b/README
@@ -33,6 +33,11 @@ Will Robertson <will.robertson@latex-project.org>
Philipp Gesang <philipp.gesang@alumni.uni-heidelberg.de>
Dohyun Kim <nomosnomos@gmail.com>
Reuben Thomas <https://github.com/rrthomas>
+Joseph Wright <joseph.wright@morningstar2.co.uk>
+Manuel Pégourié-Gonnard <mpg@elzevir.fr>
+Olof-Joachim Frahm <olof@macrolet.net>
+Patrick Gundlach <gundlach@speedata.de>
+Philipp Stephani <st_philipp@yahoo.de>
Installation
diff --git a/src/luaotfload-database.lua b/src/luaotfload-database.lua
index 1bc2768..2bce001 100644
--- a/src/luaotfload-database.lua
+++ b/src/luaotfload-database.lua
@@ -2193,14 +2193,14 @@ local collect_font_filenames_texmf = function ()
local osfontdir = kpseexpand_path "$OSFONTDIR"
if stringis_empty (osfontdir) then
- logreport ("info", 1, "db", "Scanning TEXMF for fonts...")
+ logreport ("both", 1, "db", "Scanning TEXMF for fonts...")
else
- logreport ("info", 1, "db", "Scanning TEXMF and $OSFONTDIR for fonts...")
+ logreport ("both", 1, "db", "Scanning TEXMF and $OSFONTDIR for fonts...")
if log.get_loglevel () > 3 then
local osdirs = filesplitpath (osfontdir)
- logreport ("info", 0, "db", "$OSFONTDIR has %d entries:", #osdirs)
+ logreport ("both", 0, "db", "$OSFONTDIR has %d entries:", #osdirs)
for i = 1, #osdirs do
- logreport ("info", 0, "db", "[%d] %s", i, osdirs[i])
+ logreport ("both", 0, "db", "[%d] %s", i, osdirs[i])
end
end
end
@@ -2214,14 +2214,14 @@ local collect_font_filenames_texmf = function ()
end
local tasks = filter_out_pwd (filesplitpath (fontdirs))
- logreport ("info", 3, "db",
+ logreport ("both", 3, "db",
"Initiating scan of %d directories.", #tasks)
local files = { }
for _, dir in next, tasks do
files = tableappend (files, collect_font_filenames_dir (dir, "texmf"))
end
- logreport ("term", 3, "db", "Collected %d files.", #files)
+ logreport ("both", 3, "db", "Collected %d files.", #files)
return files
end
diff --git a/src/luaotfload-tool.lua b/src/luaotfload-tool.lua
index e9a434a..ab025b3 100755
--- a/src/luaotfload-tool.lua
+++ b/src/luaotfload-tool.lua
@@ -129,7 +129,7 @@ local backup = {
}
texio.write, texio.write_nl = dummy_function, dummy_function
-require "luaotfload-basics-gen.lua"
+require "fontloader-basics-gen.lua"
texio.write, texio.write_nl = backup.write, backup.write_nl
utilities = backup.utilities