summaryrefslogtreecommitdiff
path: root/tex/context/base/luat-deb.tex
blob: 55686ac1144cb2fd8f8928c1461281df5204cbdc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
%D \module
%D   [       file=luat-deb,
%D        version=2005.11.06,
%D          title=\CONTEXT\ Communication Macros,
%D       subtitle=Initialization,
%D         author=Hans Hagen,
%D           date=\currentdate,
%D      copyright=PRAGMA]
%C
%C This module is part of the \CONTEXT\ macro||package and is
%C therefore copyrighted by \PRAGMA. See mreadme.pdf for
%C details.

\writestatus{loading}{Communication Support (initialization)}

\registerctxluafile{luat-deb}{1.001}

\startruntimeluacode
    \ctxlua {
        lmx.htmfile = function(name) return environment.jobname .. "-status.html" end
        lmx.lmxfile = function(name) return environment.texfile(name) end
    }
\stopruntimeluacode

\def\showdebuginfo{\ctxlua{tracers.showdebuginfo()}}
\def\overloaderror{\ctxlua{tracers.overloaderror()}}

\def\breakpoint{\showdebuginfo\wait}

\registerctxluafile{luat-tra}{1.001}

\appendtoks
    \ctxlua {
        if debugger.tracing() then
            debugger.enable() ;
        end
    }%
\to \everyjob

\appendtoks
    \ctxlua {
        if debugger.tracing() then
            debugger.disable() ;
            debugger.savestats("\jobname-luacalls.log") ;
        end
    }%
\to \everybye

\endinput