diff options
Diffstat (limited to 'tex/context')
-rw-r--r-- | tex/context/third/enigma/enigma.lua | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/tex/context/third/enigma/enigma.lua b/tex/context/third/enigma/enigma.lua index ce2bc3d..b10b067 100644 --- a/tex/context/third/enigma/enigma.lua +++ b/tex/context/third/enigma/enigma.lua @@ -68,6 +68,7 @@ libraries. \stopparagraph --ichd]]-- +local get_debug_info = debug.getinfo local ioread = io.read local iowrite = io.write local mathfloor = math.floor @@ -1556,9 +1557,15 @@ local new_callback = function (machine, name) mod_5 = 0 if format_is_context == true then head = c - else - head = a + local cbk_env = get_debug_info(4) -- no getenv in lua 5.2 + --inspect(cbk_env) + if cbk_env.func == nodes.processors.pre_linebreak_filter then + -- how weird is that? + return aux(head) + end + return head end + head = a return aux(head) end |