mirror of
https://github.com/vale981/master-thesis-tex
synced 2025-03-04 09:11:38 -05:00
11 lines
407 B
Lua
11 lines
407 B
Lua
texconfig.interaction = 0 -- Activate batchmode
|
|
texconfig.halt_on_error = true -- Stop at first error
|
|
|
|
callback.register('show_error_message', function(...)
|
|
texio.write_nl('term and log', status.lasterrorstring)
|
|
texio.write('term', '.\n')
|
|
end)
|
|
callback.register('show_lua_error_hook', function(...)
|
|
texio.write_nl('term and log', status.lastluaerrorstring)
|
|
texio.write('term', '.\n')
|
|
end)
|