diff options
author | Philipp Gesang <phg42.2a@gmail.com> | 2013-04-16 21:32:18 +0200 |
---|---|---|
committer | Philipp Gesang <phg42.2a@gmail.com> | 2013-04-16 21:32:18 +0200 |
commit | 71923457b85908947e9909589989cca873d9a860 (patch) | |
tree | 7057ae9fec751ebe4221d11f650a30541acf066f /otfl-fonts-merged.lua | |
parent | 5a8500f312740eeca9dd7bc8a507d6e88d7653f7 (diff) | |
download | luaotfload-71923457b85908947e9909589989cca873d9a860.tar.gz |
apply hotfix by Hans for bad clig substitution
reference:
http://www.ntg.nl/pipermail/ntg-context/2013/072536.html
Diffstat (limited to 'otfl-fonts-merged.lua')
-rw-r--r-- | otfl-fonts-merged.lua | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/otfl-fonts-merged.lua b/otfl-fonts-merged.lua index 96f4c79..926037f 100644 --- a/otfl-fonts-merged.lua +++ b/otfl-fonts-merged.lua @@ -6148,7 +6148,19 @@ local function t_hashed(t,cache) return nil end end -local s_hashed=t_hashed +--local s_hashed=t_hashed +local function s_hashed(t,cache) + if t then + local ht = { } + local tf = t[1] + for i=1,#tf do + ht[i] = { [tf[i]] = true } + end + return ht + else + return nil + end +end local function r_uncover(splitter,cache,cover,replacements) if cover=="" then return nil |