summaryrefslogtreecommitdiff
path: root/tex/context/base/trac-pro.lua
diff options
context:
space:
mode:
authorMarius <mariausol@gmail.com>2014-02-13 13:00:35 +0200
committerMarius <mariausol@gmail.com>2014-02-13 13:00:35 +0200
commit43b2c43c53673bbaebc0cec57d32c4609c026cd9 (patch)
treefe93e87b47c31f163d6042cc27af86d2a990fb28 /tex/context/base/trac-pro.lua
parent8c7fab57c5fd2db6b9ade5f7608add9f650c8460 (diff)
downloadcontext-43b2c43c53673bbaebc0cec57d32c4609c026cd9.tar.gz
beta 2014.02.13 11:27
Diffstat (limited to 'tex/context/base/trac-pro.lua')
-rw-r--r--tex/context/base/trac-pro.lua6
1 files changed, 4 insertions, 2 deletions
diff --git a/tex/context/base/trac-pro.lua b/tex/context/base/trac-pro.lua
index d6e0d0339..897b6a15c 100644
--- a/tex/context/base/trac-pro.lua
+++ b/tex/context/base/trac-pro.lua
@@ -26,7 +26,8 @@ local registered = { }
local function report_index(k,name)
if trace_namespaces then
- report_system("reference to %a in protected namespace %a: %s",k,name,debug.traceback())
+ report_system("reference to %a in protected namespace %a: %s",k,name)
+ debugger.showtraceback(report_system)
else
report_system("reference to %a in protected namespace %a",k,name)
end
@@ -34,7 +35,8 @@ end
local function report_newindex(k,name)
if trace_namespaces then
- report_system("assignment to %a in protected namespace %a: %s",k,name,debug.traceback())
+ report_system("assignment to %a in protected namespace %a: %s",k,name)
+ debugger.showtraceback(report_system)
else
report_system("assignment to %a in protected namespace %a",k,name)
end