summaryrefslogtreecommitdiff
path: root/tex/context/base/mlib-ctx.lua
diff options
context:
space:
mode:
Diffstat (limited to 'tex/context/base/mlib-ctx.lua')
-rw-r--r--tex/context/base/mlib-ctx.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/tex/context/base/mlib-ctx.lua b/tex/context/base/mlib-ctx.lua
index 8de6a4df6..00d043ad1 100644
--- a/tex/context/base/mlib-ctx.lua
+++ b/tex/context/base/mlib-ctx.lua
@@ -76,11 +76,11 @@ end
statistics.register("metapost processing time", function()
local n = metapost.n
if n > 0 then
- local e, t = metapost.externals.n, statistics.elapsedtime
+ local e, t = metapost.makempy.nofconverted, statistics.elapsedtime
local str = format("%s seconds, loading: %s seconds, execution: %s seconds, n: %s",
t(metapost), t(mplib), t(metapost.exectime), n)
if e > 0 then
- return format("%s, external: %s seconds (%s calls)", str, t(metapost.externals), e)
+ return format("%s, external: %s seconds (%s calls)", str, t(metapost.makempy), e)
else
return str
end