diff options
author | Context Git Mirror Bot <phg42.2a@gmail.com> | 2015-09-09 22:15:06 +0200 |
---|---|---|
committer | Context Git Mirror Bot <phg42.2a@gmail.com> | 2015-09-09 22:15:06 +0200 |
commit | f28043b96635a0845521fe0094a3863d7ff13b6d (patch) | |
tree | b57730bb08599d5875bee8cf118d832e0c5977a3 /tex/context/base/page-lin.lua | |
parent | cf4c4c56e5748e91ecc28f8126f5fc6eadfd73fa (diff) | |
download | context-f28043b96635a0845521fe0094a3863d7ff13b6d.tar.gz |
2015-09-09 21:26:00
Diffstat (limited to 'tex/context/base/page-lin.lua')
-rw-r--r-- | tex/context/base/page-lin.lua | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/tex/context/base/page-lin.lua b/tex/context/base/page-lin.lua index 788ca0a18..af6118b05 100644 --- a/tex/context/base/page-lin.lua +++ b/tex/context/base/page-lin.lua @@ -97,7 +97,10 @@ local new_kern = nodepool.kern local ctx_convertnumber = context.convertnumber local ctx_makelinenumber = context.makelinenumber -local addtoline = typesetters.paragraphs.addtoline +local paragraphs = typesetters.paragraphs +local addtoline = paragraphs.addtoline +local checkline = paragraphs.checkline +local moveinline = paragraphs.moveinline -- cross referencing @@ -244,7 +247,7 @@ local function check_number(n,a,skip,sameline) report_lines("skipping line number %s for setup %a: %s (%s)",#current_list,a,s,d.continue or v_no) end end - local p = getprop(n,"line") + local p = checkline(n) if p then ctx_makelinenumber(tag,skipflag,s,p.hsize,p.reverse and "TRT" or "TLT") else |