summaryrefslogtreecommitdiff
path: root/tex/context/base/mkiv/page-lin.lua
diff options
context:
space:
mode:
authorHans Hagen <pragma@wxs.nl>2018-08-28 17:36:57 +0200
committerContext Git Mirror Bot <phg@phi-gamma.net>2018-08-28 17:36:57 +0200
commit5794d8b0c845aad2ab4cf36dc14201b21ef5a784 (patch)
tree0ed7f952d69e07a2a885f76fcb7f24499dd20768 /tex/context/base/mkiv/page-lin.lua
parentb098b3973dd4a38184882a4a5b84aad2bdd5835a (diff)
downloadcontext-5794d8b0c845aad2ab4cf36dc14201b21ef5a784.tar.gz
2018-08-28 17:29:00
Diffstat (limited to 'tex/context/base/mkiv/page-lin.lua')
-rw-r--r--tex/context/base/mkiv/page-lin.lua8
1 files changed, 4 insertions, 4 deletions
diff --git a/tex/context/base/mkiv/page-lin.lua b/tex/context/base/mkiv/page-lin.lua
index b990cb223..e59bb4ed1 100644
--- a/tex/context/base/mkiv/page-lin.lua
+++ b/tex/context/base/mkiv/page-lin.lua
@@ -284,7 +284,7 @@ end
local function listisnumbered(list)
if list then
- for n in nexthlist, list do -- LUATEXVERSION >= 1.090
+ for n in nexthlist, list do -- LUATEXVERSION >= 1.080
if getsubtype(n) == line_code then
local a = getattr(n,a_linenumber)
if a then
@@ -384,7 +384,7 @@ function boxed.stage_one(n,nested)
local skip = false
local function check()
- for n in nexthlist, list do -- LUATEXVERSION >= 1.090
+ for n in nexthlist, list do -- LUATEXVERSION >= 1.080
local subtype = getsubtype(n)
if subtype ~= line_code then
-- go on
@@ -451,7 +451,7 @@ function boxed.stage_one(n,nested)
if not list then
return
end
- for n in nextvlist, list do -- LUATEXVERSION >= 1.090
+ for n in nextvlist, list do -- LUATEXVERSION >= 1.080
local p = properties[n]
if p and p.columngap then
if trace_numbers then
@@ -474,7 +474,7 @@ function boxed.stage_two(n,m)
if #current_list > 0 then
m = m or lines.scratchbox
local t, tn = { }, 0
- for l in nexthlist, getlist(getbox(m)) do -- LUATEXVERSION >= 1.090
+ for l in nexthlist, getlist(getbox(m)) do -- LUATEXVERSION >= 1.080
tn = tn + 1
t[tn] = copy_node(l) -- use take_box instead
end