summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/tex/context/base/pack-obj.lua
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/tex/context/base/pack-obj.lua')
-rw-r--r--Master/texmf-dist/tex/context/base/pack-obj.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/Master/texmf-dist/tex/context/base/pack-obj.lua b/Master/texmf-dist/tex/context/base/pack-obj.lua
index 2dabfa7846a..c580aaa6287 100644
--- a/Master/texmf-dist/tex/context/base/pack-obj.lua
+++ b/Master/texmf-dist/tex/context/base/pack-obj.lua
@@ -11,7 +11,7 @@ if not modules then modules = { } end modules ['pack-obj'] = {
reusable components.</p>
--ldx]]--
-local texsprint, texcount = tex.sprint, tex.count
+local texcount = tex.count
local allocate = utilities.storage.allocate
local collected = allocate()
@@ -46,12 +46,12 @@ end
function jobobjects.number(tag,default)
local o = collected[tag] or tobesaved[tag]
- texsprint((o and o[1]) or default)
+ context((o and o[1]) or default)
end
function jobobjects.page(tag,default)
local o = collected[tag] or tobesaved[tag]
- texsprint((o and o[2]) or default)
+ context((o and o[2]) or default)
end
function jobobjects.doifelse(tag)