summaryrefslogtreecommitdiff
path: root/tex/context/base/pack-obj.lua
diff options
context:
space:
mode:
Diffstat (limited to 'tex/context/base/pack-obj.lua')
-rw-r--r--tex/context/base/pack-obj.lua9
1 files changed, 5 insertions, 4 deletions
diff --git a/tex/context/base/pack-obj.lua b/tex/context/base/pack-obj.lua
index 088ad6add..2dabfa784 100644
--- a/tex/context/base/pack-obj.lua
+++ b/tex/context/base/pack-obj.lua
@@ -12,9 +12,10 @@ reusable components.</p>
--ldx]]--
local texsprint, texcount = tex.sprint, tex.count
-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 jobobjects = {
collected = collected,
@@ -24,8 +25,8 @@ local jobobjects = {
job.objects = jobobjects
local function initializer()
- collected = mark(jobobjects.collected)
- tobesaved = mark(jobobjects.tobesaved)
+ collected = jobobjects.collected
+ tobesaved = jobobjects.tobesaved
end
job.register('job.objects.collected', tobesaved, initializer, nil)