summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--luatexbase-mcb.dtx4
1 files changed, 1 insertions, 3 deletions
diff --git a/luatexbase-mcb.dtx b/luatexbase-mcb.dtx
index a032e26..d9fb995 100644
--- a/luatexbase-mcb.dtx
+++ b/luatexbase-mcb.dtx
@@ -626,12 +626,10 @@ end
% \begin{macrocode}
local function simplehandler (name)
return function(...)
- local ret = true
+ local ret
for _, f in ipairs(callbacklist[name]) do
ret = f.func(...)
if ret == false then
- log("function '%s' returned false in callback '%s'",
- f.description, name)
return false
end
end