diff options
author | Hans Hagen <pragma@wxs.nl> | 2012-10-22 11:01:00 +0200 |
---|---|---|
committer | Hans Hagen <pragma@wxs.nl> | 2012-10-22 11:01:00 +0200 |
commit | fa5d61b7a7ea2f3cc57cac68355eb95ebc3db0ba (patch) | |
tree | 6a58acd2f179d1adaf05fef35f7dca4dcd56ceb3 /tex/generic | |
parent | 7669c544a236c85d93bc2eba8fab2a0537d9e4bc (diff) | |
download | context-fa5d61b7a7ea2f3cc57cac68355eb95ebc3db0ba.tar.gz |
beta 2012.10.22 11:01
Diffstat (limited to 'tex/generic')
-rw-r--r-- | tex/generic/context/luatex/luatex-fonts-merged.lua | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/tex/generic/context/luatex/luatex-fonts-merged.lua b/tex/generic/context/luatex/luatex-fonts-merged.lua index 1ae484cc4..636656e72 100644 --- a/tex/generic/context/luatex/luatex-fonts-merged.lua +++ b/tex/generic/context/luatex/luatex-fonts-merged.lua @@ -1,6 +1,6 @@ -- merged file : luatex-fonts-merged.lua -- parent file : luatex-fonts.lua --- merge date : 10/20/12 11:51:09 +-- merge date : 10/22/12 11:01:11 do -- begin closure to overcome local limits and interference @@ -9556,21 +9556,21 @@ end -- third component. local function getcomponentindex(start) - if start.id ~= glyph_code then + if start.id ~= glyph_code then return 0 - elseif start.subtype == ligature_code then + elseif start.subtype == ligature_code then local i = 0 - local components = start.components - while components do - i = i + getcomponentindex(components) - components = components.next - end - return i + local components = start.components + while components do + i = i + getcomponentindex(components) + components = components.next + end + return i elseif not marks[start.char] then return 1 else return 0 - end + end end -- local function toligature(kind,lookupname,start,stop,char,markflag,discfound) -- brr head |