diff options
author | Marius <mariausol@gmail.com> | 2013-12-26 14:00:26 +0200 |
---|---|---|
committer | Marius <mariausol@gmail.com> | 2013-12-26 14:00:26 +0200 |
commit | 0d26f9ebc9ba7dca60bf49c5de8ca6c1c197c608 (patch) | |
tree | 9be42b4d714773c4b1ac9f42728ede04f6b3b5bd /tex/context/base/font-col.lua | |
parent | f3cbe661ac115c29ab8c0674fc857d3331d5d4cc (diff) | |
download | context-0d26f9ebc9ba7dca60bf49c5de8ca6c1c197c608.tar.gz |
beta 2013.12.26 12:50
Diffstat (limited to 'tex/context/base/font-col.lua')
-rw-r--r-- | tex/context/base/font-col.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tex/context/base/font-col.lua b/tex/context/base/font-col.lua index b15997cba..f5e17f1da 100644 --- a/tex/context/base/font-col.lua +++ b/tex/context/base/font-col.lua @@ -89,7 +89,7 @@ function collections.define(name,font,ranges,details) details = settings_to_hash(details) -- todo, combine per font start/stop as arrays for s in gmatch(ranges,"[^, ]+") do - local start, stop, description = characters.getrange(s) + local start, stop, description, gaps = characters.getrange(s) if start and stop then if trace_collecting then if description then @@ -113,6 +113,7 @@ function collections.define(name,font,ranges,details) font = font, start = start, stop = stop, + gaps = gaps, offset = offset, rscale = tonumber (details.rscale) or 1, force = toboolean(details.force,true), |