diff options
author | Philipp Gesang <phg42.2a@gmail.com> | 2013-05-06 13:06:18 +0200 |
---|---|---|
committer | Philipp Gesang <phg42.2a@gmail.com> | 2013-05-06 13:06:18 +0200 |
commit | 6c8c07e695d19dd73223f4c83aa78137e3c7791e (patch) | |
tree | 11708b38f043a7b940285ee363dc1aded3c66a18 /luaotfload.dtx | |
parent | a3c17b60fb1f72c72e7a1d8093d345c4c056f22f (diff) | |
download | luaotfload-6c8c07e695d19dd73223f4c83aa78137e3c7791e.tar.gz |
update luaotfload.lua as included in dtx
* default to cached name resolver (testing)
* install less verbose file resolver
Diffstat (limited to 'luaotfload.dtx')
-rw-r--r-- | luaotfload.dtx | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/luaotfload.dtx b/luaotfload.dtx index 8d17f53..f11f466 100644 --- a/luaotfload.dtx +++ b/luaotfload.dtx @@ -1219,7 +1219,8 @@ local luaotfload = luaotfload config = config or { } config.luaotfload = config.luaotfload or { } -config.luaotfload.resolver = config.luaotfload.resolver or "normal" +------.luaotfload.resolver = config.luaotfload.resolver or "normal" +config.luaotfload.resolver = config.luaotfload.resolver or "cached" config.luaotfload.definer = config.luaotfload.definer or "patch" config.luaotfload.loglevel = config.luaotfload.loglevel or 1 config.luaotfload.color_callback = config.luaotfload.color_callback or "pre_linebreak_filter" @@ -1232,7 +1233,7 @@ luaotfload.module = { description = "OpenType layout system.", author = "Elie Roux & Hans Hagen", copyright = "Elie Roux", - license = "CC0" + license = "GPL v2.0" } local luatexbase = luatexbase @@ -1419,7 +1420,7 @@ local pop_namespaces = function (normalglobal, isolate) local _G = _G local mode = "non-destructive" if isolate then mode = "destructive" end - log("pop namespace from font loader -- "..mode) + log("pop namespace from font loader -- " .. mode) for k, v in next, _G do if not normalglobal[k] then context_environment[k] = v @@ -1606,8 +1607,8 @@ formats.ofm = "type1" % % \begin{macrocode} request_resolvers.file = function (specification) - --local found = fonts.names.crude_file_lookup(specification.name) - local found = fonts.names.crude_file_lookup_verbose(specification.name) + local found = fonts.names.crude_file_lookup(specification.name) + --local found = fonts.names.crude_file_lookup_verbose(specification.name) specification.name = found[1] --if format then specification.forced = format end end |