diff options
-rw-r--r-- | luaotfload.dtx | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/luaotfload.dtx b/luaotfload.dtx index 818dbd9..8ffb8f9 100644 --- a/luaotfload.dtx +++ b/luaotfload.dtx @@ -905,14 +905,7 @@ end local fl_prefix = "otfl" -- “luatex” for luatex-plain local loadmodule = function (name) - local tofind = fl_prefix .."-"..name - local found = find_file(tofind,"tex") - if found then - log("loading file %s.", found) - dofile(found) - else - error("file %s not found.", tofind) - end + require(fl_prefix .."-"..name) end % \end{macrocode} |