diff options
author | Elie Roux <elie.roux@telecom-bretagne.eu> | 2013-06-09 10:59:58 +0200 |
---|---|---|
committer | Elie Roux <elie.roux@telecom-bretagne.eu> | 2013-06-09 10:59:58 +0200 |
commit | ac1bab46625d787b09d6dc403e8632b8f2f7970b (patch) | |
tree | 8c2e250ca55b6b6d7a2ec3946e2d428f1c354116 | |
parent | f84878989c34943fc7b9e5595ab7663da8f1ef73 (diff) | |
download | luatexbase-ac1bab46625d787b09d6dc403e8632b8f2f7970b.tar.gz |
Logging is just spoiling logs when done with hyphenate callback...
-rw-r--r-- | luatexbase-mcb.dtx | 4 |
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 |