summaryrefslogtreecommitdiff
path: root/tex/context/base/strc-lst.lua
diff options
context:
space:
mode:
Diffstat (limited to 'tex/context/base/strc-lst.lua')
-rw-r--r--tex/context/base/strc-lst.lua11
1 files changed, 10 insertions, 1 deletions
diff --git a/tex/context/base/strc-lst.lua b/tex/context/base/strc-lst.lua
index 21015e43a..930ff2d0a 100644
--- a/tex/context/base/strc-lst.lua
+++ b/tex/context/base/strc-lst.lua
@@ -104,6 +104,9 @@ local function initializer()
end
end
end
+ if r then
+ r.listindex = i -- handy to have
+ end
end
end
@@ -118,6 +121,7 @@ function lists.push(t)
p = #cached + 1
cached[p] = helpers.simplify(t)
pushed[i] = p
+ r.listindex = p
end
texwrite(p)
end
@@ -144,7 +148,12 @@ function lists.enhance(n)
local kind = metadata.kind
local name = metadata.name
if references then
- references.tag = tags.getid(kind,name)
+ -- is this used ?
+ local tag = tags.getid(kind,name)
+ if tag and tag ~= "?" then
+ references.tag = tag
+ end
+ --~ references.listindex = n
end
-- specific enhancer (kind of obsolete)
local enhancer = kind and lists.enhancers[kind]