diff options
Diffstat (limited to 'tex/context/base/mkiv/strc-lst.lua')
-rw-r--r-- | tex/context/base/mkiv/strc-lst.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tex/context/base/mkiv/strc-lst.lua b/tex/context/base/mkiv/strc-lst.lua index 79f4dfc39..770947e32 100644 --- a/tex/context/base/mkiv/strc-lst.lua +++ b/tex/context/base/mkiv/strc-lst.lua @@ -286,7 +286,7 @@ function lists.discard(n) -- maybe an error message elseif n == #cached then cached[n] = nil - n = n -1 + n = n - 1 while n > 0 and cached[n] == false do cached[n] = nil -- collect garbage n = n - 1 @@ -330,7 +330,7 @@ function lists.enhance(n) local kind = metadata.kind local name = metadata.name if trace_lists then - report_lists("enhancing %a, name %a",n,name) + report_lists("enhancing %a, name %a, page %a",n,name,references.realpage or 0) end -- if references then -- -- is this used ? |