diff options
author | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | 2010-03-28 18:41:34 +0200 |
---|---|---|
committer | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | 2010-03-28 18:41:34 +0200 |
commit | d18e9d7f5dd2a76b31ee2beab96073973c3c8249 (patch) | |
tree | 4dea315b504ca000877d5708b8571f5046c307c3 /luamcallbacks.dtx | |
parent | 281527925dbed979aa27918162705a53686d2e39 (diff) | |
download | luatexbase-d18e9d7f5dd2a76b31ee2beab96073973c3c8249.tar.gz |
Finished lua module renaming.
Diffstat (limited to 'luamcallbacks.dtx')
-rw-r--r-- | luamcallbacks.dtx | 13 |
1 files changed, 6 insertions, 7 deletions
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} |