diff options
author | Khaled Hosny <khaledhosny@eglug.org> | 2010-06-27 11:52:48 +0300 |
---|---|---|
committer | Khaled Hosny <khaledhosny@eglug.org> | 2010-06-27 11:54:55 +0300 |
commit | 0e831895dcfbdf4d01609160cd69c062b0c6ba99 (patch) | |
tree | 4c49979ca1e3b15a823cf1dc67a2b6011a649df5 /otfl-font-otc.lua | |
parent | ce8286ccb9bf9d0b554d8dc16b0d1e6dfec62973 (diff) | |
download | luaotfload-0e831895dcfbdf4d01609160cd69c062b0c6ba99.tar.gz |
Fix 'anum' feature
'FAR' script was used instead of 'ARA' and 'URD' instead of 'FAR'!
Diffstat (limited to 'otfl-font-otc.lua')
-rw-r--r-- | otfl-font-otc.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/otfl-font-otc.lua b/otfl-font-otc.lua index 551696f..35555ed 100644 --- a/otfl-font-otc.lua +++ b/otfl-font-otc.lua @@ -94,14 +94,14 @@ local extra_features = { -- maybe just 1..n so that we prescribe order }, anum = { { - features = { { scripts = { { script = "arab", langs = { "dflt", "FAR" }, } }, tag = "anum", comment = "added bij mkiv" }, }, + features = { { scripts = { { script = "arab", langs = { "dflt", "ARA" }, } }, tag = "anum", comment = "added bij mkiv" }, }, name = "ctx_anum_1", subtables = { { name = "ctx_anum_1_s" } }, type = "gsub_single", flags = { }, }, { - features = { { scripts = { { script = "arab", langs = { "URD" }, } }, tag = "anum", comment = "added bij mkiv" }, }, + features = { { scripts = { { script = "arab", langs = { "FAR" }, } }, tag = "anum", comment = "added bij mkiv" }, }, name = "ctx_anum_2", subtables = { { name = "ctx_anum_2_s" } }, type = "gsub_single", |