diff options
author | Philipp Gesang <phg@phi-gamma.net> | 2015-11-09 08:16:19 +0100 |
---|---|---|
committer | Philipp Gesang <phg@phi-gamma.net> | 2015-11-09 08:16:22 +0100 |
commit | 60f41dfbc13f06a1b43a4e66798a0d043d210eee (patch) | |
tree | 65b81324cfd015bc7b14686459c899b15ac05455 /src/luaotfload-configuration.lua | |
parent | 389fe13c73832215d8486e43ed3c52f6c96f45ca (diff) | |
download | luaotfload-60f41dfbc13f06a1b43a4e66798a0d043d210eee.tar.gz |
[init,conf] enable direct loading of fontloader components
For now, this pertains only to the modules we ship in Luaotfload. For
loading from Context we still need a step to distinguish between the
namespaced versions of the files, the pure ones in texmf/…/base, and the
Luatex-Fonts ones.
But yeah, setting
[run]
fontloader = unpackaged
in the luaotfloadrc now works splendidly.
Diffstat (limited to 'src/luaotfload-configuration.lua')
-rw-r--r-- | src/luaotfload-configuration.lua | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/luaotfload-configuration.lua b/src/luaotfload-configuration.lua index 6f94195..1fe30fe 100644 --- a/src/luaotfload-configuration.lua +++ b/src/luaotfload-configuration.lua @@ -127,9 +127,11 @@ local feature_presets = { --doc]]-- local registered_loaders = { - default = luaotfloadstatus and luaotfloadstatus.notes.loader or "reference", - reference = "reference", - tl2014 = "tl2014", + default = luaotfloadstatus and luaotfloadstatus.notes.loader or "reference", + reference = "reference", + unpackaged = "unpackaged", + context = "context", + tl2014 = "tl2014", } --[[doc-- |