summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Pégourié-Gonnard <mpg@elzevir.fr>2010-03-28 18:41:34 +0200
committerManuel Pégourié-Gonnard <mpg@elzevir.fr>2010-03-28 18:41:34 +0200
commitd18e9d7f5dd2a76b31ee2beab96073973c3c8249 (patch)
tree4dea315b504ca000877d5708b8571f5046c307c3
parent281527925dbed979aa27918162705a53686d2e39 (diff)
downloadluatexbase-d18e9d7f5dd2a76b31ee2beab96073973c3c8249.tar.gz
Finished lua module renaming.
-rw-r--r--TODO1
-rw-r--r--luamcallbacks.dtx13
2 files changed, 6 insertions, 8 deletions
diff --git a/TODO b/TODO
index 49932af..971e9be 100644
--- a/TODO
+++ b/TODO
@@ -2,7 +2,6 @@ general
-------
- check for user macros starting with \luatex
-- change lua module name(s) (luatexbase or luatexbase.regs etc)
compat
------
diff --git a/luamcallbacks.dtx b/luamcallbacks.dtx
index c2d94f9..5bda6f5 100644
--- a/luamcallbacks.dtx
+++ b/luamcallbacks.dtx
@@ -151,8 +151,7 @@ See source file '\inFileName' for details.
% addition to the default Lua\TeX\ callbacks.
%
% This package contains only a \texttt{.lua} file, that can be called by
-% another lua script. For example, this script is called in
-% \textsf{luatextra}.
+% another lua script.
%
%\subsubsection*{Limitations}
%
@@ -200,7 +199,7 @@ luamcallbacks.module = {
license = "CC0",
}
-luatextra.provides_module(luamcallbacks.module)
+luatexbase.provides_module(luamcallbacks.module)
% \end{macrocode}
%
@@ -323,19 +322,19 @@ luamcallbacks.internalregister = luamcallbacks.internalregister or callback.regi
local callbacktypes = luamcallbacks.callbacktypes
luamcallbacks.log = luamcallbacks.log or function(...)
- luatextra.module_log('luamcallbacks', format(...))
+ luatexbase.module_log('luamcallbacks', format(...))
end
luamcallbacks.info = luamcallbacks.info or function(...)
- luatextra.module_info('luamcallbacks', format(...))
+ luatexbase.module_info('luamcallbacks', format(...))
end
luamcallbacks.warning = luamcallbacks.warning or function(...)
- luatextra.module_warning('luamcallbacks', format(...))
+ luatexbase.module_warning('luamcallbacks', format(...))
end
luamcallbacks.error = luamcallbacks.error or function(...)
- luatextra.module_error('luamcallbacks', format(...))
+ luatexbase.module_error('luamcallbacks', format(...))
end
% \end{macrocode}