summaryrefslogtreecommitdiff
path: root/tex/context/base/trac-inf.lua
diff options
context:
space:
mode:
authorMarius <mariausol@gmail.com>2013-04-14 18:00:22 +0300
committerMarius <mariausol@gmail.com>2013-04-14 18:00:22 +0300
commitf9e6297b56352c1e9035ebff52be3628f5aa730e (patch)
treed93cdaacd20755044eedf91d70412ae42e3cef14 /tex/context/base/trac-inf.lua
parentf6ff9314919dcb50694d981613611e3ded95872d (diff)
downloadcontext-f9e6297b56352c1e9035ebff52be3628f5aa730e.tar.gz
beta 2013.04.14 16:51
Diffstat (limited to 'tex/context/base/trac-inf.lua')
-rw-r--r--tex/context/base/trac-inf.lua5
1 files changed, 1 insertions, 4 deletions
diff --git a/tex/context/base/trac-inf.lua b/tex/context/base/trac-inf.lua
index fdc07d97d..eefc15a6f 100644
--- a/tex/context/base/trac-inf.lua
+++ b/tex/context/base/trac-inf.lua
@@ -50,7 +50,7 @@ local function starttiming(instance)
timer.timing = it + 1
end
-local function stoptiming(instance, report)
+local function stoptiming(instance)
local timer = timers[instance or "notimer"]
local it = timer.timing
if it > 1 then
@@ -62,9 +62,6 @@ local function stoptiming(instance, report)
local loadtime = stoptime - starttime
timer.stoptime = stoptime
timer.loadtime = timer.loadtime + loadtime
- if report then
- statistics.report("load time %0.3f",loadtime)
- end
timer.timing = 0
return loadtime
end