summaryrefslogtreecommitdiff
path: root/tex/context/base/grph-fil.lua
diff options
context:
space:
mode:
Diffstat (limited to 'tex/context/base/grph-fil.lua')
-rw-r--r--tex/context/base/grph-fil.lua9
1 files changed, 5 insertions, 4 deletions
diff --git a/tex/context/base/grph-fil.lua b/tex/context/base/grph-fil.lua
index e036cf9a1..0856f5b08 100644
--- a/tex/context/base/grph-fil.lua
+++ b/tex/context/base/grph-fil.lua
@@ -12,9 +12,10 @@ local trace_run = false trackers.register("graphic.runfile",function(v) trace_r
local report_run = logs.reporter("graphics","run")
-local allocate, mark = utilities.storage.allocate, utilities.storage.mark
+local allocate = utilities.storage.allocate
-local collected, tobesaved = allocate(), allocate()
+local collected = allocate()
+local tobesaved = allocate()
local jobfiles = {
collected = collected,
@@ -24,8 +25,8 @@ local jobfiles = {
job.files = jobfiles
local function initializer()
- tobesaved = mark(jobfiles.tobesaved)
- collected = mark(jobfiles.collected)
+ tobesaved = jobfiles.tobesaved
+ collected = jobfiles.collected
end
job.register('job.files.collected', tobesaved, initializer)