summaryrefslogtreecommitdiff
path: root/src/luaotfload-features.lua
diff options
context:
space:
mode:
authorPhilipp Gesang <phg@phi-gamma.net>2015-12-18 08:07:08 +0100
committerPhilipp Gesang <phg@phi-gamma.net>2015-12-18 08:07:08 +0100
commitbc4588e5d5c4392cb1491c57d8c0f12e2221e215 (patch)
treeb089a9bfc25d38afdc53e6d0b198461c2a2b1d0b /src/luaotfload-features.lua
parenta2c098ec73840c855346b1afa8522585625b97d0 (diff)
downloadluaotfload-bc4588e5d5c4392cb1491c57d8c0f12e2221e215.tar.gz
[features] clean up font feature handling
Diffstat (limited to 'src/luaotfload-features.lua')
-rw-r--r--src/luaotfload-features.lua18
1 files changed, 7 insertions, 11 deletions
diff --git a/src/luaotfload-features.lua b/src/luaotfload-features.lua
index 5188051..749ffec 100644
--- a/src/luaotfload-features.lua
+++ b/src/luaotfload-features.lua
@@ -938,14 +938,6 @@ local report_otf = logs.reporter("fonts","otf loading")
--HH]]--
-local types = {
- substitution = "gsub_single",
- ligature = "gsub_ligature",
- alternate = "gsub_alternate",
-}
-
-setmetatableindex(types, function(t,k) t[k] = k return k end) -- "key"
-
--- start locals for addfeature()
local utfbyte = unicode.utf8.byte
@@ -969,6 +961,8 @@ local types = {
kern = "gpos_pair",
}
+setmetatableindex(types, function(t,k) t[k] = k return k end) -- "key"
+
--- stop locals for addfeature()
local everywhere = { ["*"] = { ["*"] = true } } -- or: { ["*"] = { "*" } }
@@ -1220,6 +1214,8 @@ end
---[[ end snippet from font-otc.lua ]]
+local tlig_order = { "tlig" }
+
local tlig_specification = {
{
type = "substitution",
@@ -1230,7 +1226,7 @@ local tlig_specification = {
[0x0060] = 0x2018, -- quoteright
},
flags = noflags,
- order = { "tlig" },
+ order = tlig_order,
prepend = true,
},
{
@@ -1250,7 +1246,7 @@ local tlig_specification = {
[0x00BB] = {0x003E, 0x003E}, -- RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK
},
flags = noflags,
- order = { "tlig" },
+ order = tlig_order,
prepend = true,
},
{
@@ -1263,7 +1259,7 @@ local tlig_specification = {
[0x00BF] = {0x003F, 0x0060}, -- questiondown
},
flags = noflags,
- order = { "tlig" },
+ order = tlig_order,
prepend = true,
},
}