diff options
author | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | 2010-03-28 18:24:06 +0200 |
---|---|---|
committer | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | 2010-03-28 18:24:06 +0200 |
commit | 56e89518ff3cdb86375adaaf130adb7f739e1bc7 (patch) | |
tree | 3c8ed1c3e7ae06b979d02945672fb55117548fdb | |
parent | 3a27be740ffc0a38ea8d4b09bdfa68cd3adcb15a (diff) | |
download | luatexbase-56e89518ff3cdb86375adaaf130adb7f739e1bc7.tar.gz |
luatextra -> luatexbase in loader
-rw-r--r-- | luatexbase-loader.dtx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/luatexbase-loader.dtx b/luatexbase-loader.dtx index 695efe6..684fcab 100644 --- a/luatexbase-loader.dtx +++ b/luatexbase-loader.dtx @@ -241,18 +241,18 @@ See source file '\inFileName' for details. % % \begin{macrocode} %<*luamodule> -module('luatextra', package.seeall) +module('luatexbase', package.seeall) % \end{macrocode} % % \begin{macrocode} local function load_module(mod) local file = kpse.find_file(mod, 'lua') if not file then - return "\n\t[luatextra.loader] Search failed" + return "\n\t[luatexbase.loader] Search failed" end local loader, error = loadfile(file) if not loader then - return "\n\t[luatextra.loader] Loading error:\n\t"..error + return "\n\t[luatexbase.loader] Loading error:\n\t"..error end texio.write_nl("("..file..")") return loader |