summaryrefslogtreecommitdiff
path: root/tex/context/base/spac-ali.lua
diff options
context:
space:
mode:
authorMarius <mariausol@gmail.com>2012-07-19 16:20:12 +0300
committerMarius <mariausol@gmail.com>2012-07-19 16:20:12 +0300
commita5a7b2858dde47198caebde3fc946c4299bec38e (patch)
treef3f22fabccd71df98dfdc327f4d65bdef6292918 /tex/context/base/spac-ali.lua
parentfbfbcf8f6c5be5c08ed47b9093c50728cbf69fa5 (diff)
downloadcontext-a5a7b2858dde47198caebde3fc946c4299bec38e.tar.gz
beta 2012.07.19 15:09
Diffstat (limited to 'tex/context/base/spac-ali.lua')
-rw-r--r--tex/context/base/spac-ali.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/tex/context/base/spac-ali.lua b/tex/context/base/spac-ali.lua
index 7ce108172..998df3aa6 100644
--- a/tex/context/base/spac-ali.lua
+++ b/tex/context/base/spac-ali.lua
@@ -77,12 +77,12 @@ local function handler(head,leftpage,realpageno)
action = leftpage and 2 or 1
end
if action == 1 then
- current.list = hpack_nodes(concat_nodes(current.list,new_stretch(3)),current.width,"exactly")
+ current.list = hpack_nodes(concat_nodes{current.list,new_stretch(3)},current.width,"exactly")
if trace_realign then
report_realign("flush left: align %s, page %s, realpage %s",align,pageno,realpageno)
end
elseif action == 2 then
- current.list = hpack_nodes(concat_nodes(new_stretch(3),current.list),current.width,"exactly")
+ current.list = hpack_nodes(concat_nodes{new_stretch(3),current.list},current.width,"exactly")
if trace_realign then
report_realign("flush right: align %s, page %s, realpage %s",align,pageno,realpageno)
end