summaryrefslogtreecommitdiff
path: root/tex/context/base/font-ota.lua
diff options
context:
space:
mode:
Diffstat (limited to 'tex/context/base/font-ota.lua')
-rw-r--r--tex/context/base/font-ota.lua11
1 files changed, 2 insertions, 9 deletions
diff --git a/tex/context/base/font-ota.lua b/tex/context/base/font-ota.lua
index 9af5a3347..79fcf3fa2 100644
--- a/tex/context/base/font-ota.lua
+++ b/tex/context/base/font-ota.lua
@@ -32,7 +32,6 @@ local a_state = attributes.private('state')
local nodecodes = nodes.nodecodes
local glyph_code = nodecodes.glyph
-local disc_code = nodecodes.disc
local math_code = nodecodes.math
local traverse_id = node.traverse_id
@@ -79,12 +78,6 @@ local features = {
fina = s_fina,
isol = s_isol,
-- mark = s_mark,
- -- rest = s_rest,
- rphf = s_rphf,
- half = s_half,
- pref = s_pref,
- blwf = s_blwf,
- pstf = s_pstf,
}
analyzers.states = states
@@ -125,7 +118,7 @@ function analyzers.setstate(head,font)
end
elseif id == disc_code then
-- always in the middle
- current[a_state] = s_medi
+ current[a_state] = s_midi
last = current
else -- finish
if first and first == last then
@@ -186,7 +179,7 @@ end
registerotffeature {
name = "analyze",
- description = "analysis of character classes",
+ description = "analysis of (for instance) character classes",
default = true,
initializers = {
node = analyzeinitializer,