summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElie Roux <elie.roux@telecom-bretagne.eu>2013-06-09 10:59:58 +0200
committerElie Roux <elie.roux@telecom-bretagne.eu>2013-06-09 10:59:58 +0200
commitac1bab46625d787b09d6dc403e8632b8f2f7970b (patch)
tree8c2e250ca55b6b6d7a2ec3946e2d428f1c354116
parentf84878989c34943fc7b9e5595ab7663da8f1ef73 (diff)
downloadluatexbase-ac1bab46625d787b09d6dc403e8632b8f2f7970b.tar.gz
Logging is just spoiling logs when done with hyphenate callback...
-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