diff options
Diffstat (limited to 'Master/texmf-dist/tex')
3 files changed, 9 insertions, 7 deletions
diff --git a/Master/texmf-dist/tex/luatex/luaotfload/luaotfload.lua b/Master/texmf-dist/tex/luatex/luaotfload/luaotfload.lua index 048253228a2..f66221fa93a 100644 --- a/Master/texmf-dist/tex/luatex/luaotfload/luaotfload.lua +++ b/Master/texmf-dist/tex/luatex/luaotfload/luaotfload.lua @@ -21,8 +21,8 @@ module("luaotfload", package.seeall) luaotfload.module = { name = "luaotfload", - version = 1.26, - date = "2012/03/27", + version = 1.27, + date = "2012/05/28", description = "OpenType layout system.", author = "Elie Roux & Hans Hagen", copyright = "Elie Roux", diff --git a/Master/texmf-dist/tex/luatex/luaotfload/luaotfload.sty b/Master/texmf-dist/tex/luatex/luaotfload/luaotfload.sty index 6f14438876c..e865ed13f3f 100644 --- a/Master/texmf-dist/tex/luatex/luaotfload/luaotfload.sty +++ b/Master/texmf-dist/tex/luatex/luaotfload/luaotfload.sty @@ -26,7 +26,7 @@ \else \NeedsTeXFormat{LaTeX2e} \ProvidesPackage{luaotfload}% - [2012/03/27 v1.26 OpenType layout system] + [2012/05/28 v1.27 OpenType layout system] \RequirePackage{luatexbase} \fi diff --git a/Master/texmf-dist/tex/luatex/luaotfload/otfl-font-otf.lua b/Master/texmf-dist/tex/luatex/luaotfload/otfl-font-otf.lua index fe9cd51d4c0..b46bc91915f 100644 --- a/Master/texmf-dist/tex/luatex/luaotfload/otfl-font-otf.lua +++ b/Master/texmf-dist/tex/luatex/luaotfload/otfl-font-otf.lua @@ -1560,26 +1560,28 @@ function otf.copy_to_tfm(data,cache_id) -- we can save a copy when we reorder th -- we have them shared because that packs nicer -- we could prepare the variants and keep 'm in descriptions if m then - local variants, parts, c = m.horiz_variants, m.horiz_parts, char + local variants, parts, c, uc = m.horiz_variants, m.horiz_parts, char, u if variants then for n in gmatch(variants,"[^ ]+") do local un = unicodes[n] - if un and u ~= un then + if un and uc ~= un then c.next = un c = characters[un] + uc = un end end c.horiz_variants = parts elseif parts then c.horiz_variants = parts end - local variants, parts, c = m.vert_variants, m.vert_parts, char + local variants, parts, c, uc = m.vert_variants, m.vert_parts, char, u if variants then for n in gmatch(variants,"[^ ]+") do local un = unicodes[n] - if un and u ~= un then + if un and uc ~= un then c.next = un c = characters[un] + uc = un end end -- c is now last in chain c.vert_variants = parts |