From 303b484243e8600166e79486b564df0988a81c32 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20P=C3=A9gouri=C3=A9-Gonnard?= Date: Mon, 29 Mar 2010 19:48:59 +0200 Subject: Fix the way names are exported in mcb. --- luatexbase-mcb.dtx | 22 +++++++--------------- 1 file changed, 7 insertions(+), 15 deletions(-) (limited to 'luatexbase-mcb.dtx') diff --git a/luatexbase-mcb.dtx b/luatexbase-mcb.dtx index 4b03ed6..e96a447 100644 --- a/luatexbase-mcb.dtx +++ b/luatexbase-mcb.dtx @@ -299,7 +299,7 @@ See source file '\inFileName' for details. % \subsubsection{Module identification} % % \begin{macrocode} -module('luatexbase.mcb', package.seeall) +module('luatexbase', package.seeall) luatexbase.provides_module({ name = "luamcallbacks", version = 0.93, @@ -781,19 +781,11 @@ function priority_in_callback (name, description) end % \end{macrocode} % -% Finally we add some functions to the \texttt{callback} module, and we +% Finally we % overwrite \texttt{callback.register} so that it outputs an error. % % \begin{macrocode} -callback.add = add_to_callback -callback.remove = remove_from_callback -callback.reset = reset_callback -callback.get_priority = priority_in_callback - -callback.create = create_callback -callback.call = call_callback - -callback.register = function (...) +callback.register = function () err("function callback.register has been deleted by luamcallbacks, " .."please use callback.add instead.") end @@ -830,11 +822,11 @@ end return head, true end - callback.add("hpack_filter",one,"my example function one",1) - callback.add("hpack_filter",two,"my example function two",2) - callback.add("hpack_filter",three,"my example function three",1) + luatexbase.add_to_callback("hpack_filter",one,"my sample function one",1) + luatexbase.add_to_callback("hpack_filter",two,"my sample function two",2) + luatexbase.add_to_callback("hpack_filter",three,"my sample function three",1) - callback.remove("hpack_filter","my example function three") + luatexbase.remove_from_callback("hpack_filter","my sample function three") } % %\bye -- cgit v1.2.3