summaryrefslogtreecommitdiff
path: root/tex/context/base/strc-lst.lua
diff options
context:
space:
mode:
authorMarius <mariausol@gmail.com>2012-02-16 11:20:24 +0200
committerMarius <mariausol@gmail.com>2012-02-16 11:20:24 +0200
commite0e3ed2de96caf76d1065b834ddd4f9ba62a1e55 (patch)
tree077ac0ae3f821511a51bc2118a99f5ad62dae83b /tex/context/base/strc-lst.lua
parent620e890d8993f2a1120b5069f97b01ca1841f50f (diff)
downloadcontext-e0e3ed2de96caf76d1065b834ddd4f9ba62a1e55.tar.gz
beta 2012.02.16 09:55
Diffstat (limited to 'tex/context/base/strc-lst.lua')
-rw-r--r--tex/context/base/strc-lst.lua8
1 files changed, 4 insertions, 4 deletions
diff --git a/tex/context/base/strc-lst.lua b/tex/context/base/strc-lst.lua
index 734ca3f7e..25d046f4f 100644
--- a/tex/context/base/strc-lst.lua
+++ b/tex/context/base/strc-lst.lua
@@ -116,6 +116,10 @@ end
job.register('structures.lists.collected', tobesaved, initializer)
function lists.addto(t)
+ local u = t.userdata
+ if u and type(u) == "string" then
+ t.userdata = helpers.touserdata(u) -- nicer at the tex end
+ end
local m = t.metadata
local r = t.references
local i = (r and r.internal) or 0 -- brrr
@@ -131,10 +135,6 @@ function lists.addto(t)
if setcomponent then
setcomponent(t) -- might move to the tex end
end
- local u = t.userdata
- if u and type(u) == "string" then
- t.userdata = helpers.touserdata(u) -- nicer at the tex end
- end
return p
end