diff options
author | Philipp Gesang <phg@phi-gamma.net> | 2016-05-09 07:15:44 +0200 |
---|---|---|
committer | Philipp Gesang <phg@phi-gamma.net> | 2016-05-09 07:16:58 +0200 |
commit | 195d57dba1533a03204aa8b7ff26ed2bb28d3405 (patch) | |
tree | bd50f6d0ee01cc4417349eaa82dbfc08b271341b /src/fontloader/misc/fontloader-font-otj.lua | |
parent | 0ba71246a7445204a457602806f9cc80c0cbe354 (diff) | |
download | luaotfload-195d57dba1533a03204aa8b7ff26ed2bb28d3405.tar.gz |
[fontloader] sync with Context as of 2016-05-09
Fixes #349 and #357.
Also the new AFM code is due, let’s see what else we need to use it.
Diffstat (limited to 'src/fontloader/misc/fontloader-font-otj.lua')
-rw-r--r-- | src/fontloader/misc/fontloader-font-otj.lua | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/src/fontloader/misc/fontloader-font-otj.lua b/src/fontloader/misc/fontloader-font-otj.lua index 6ff80d8..b65a9db 100644 --- a/src/fontloader/misc/fontloader-font-otj.lua +++ b/src/fontloader/misc/fontloader-font-otj.lua @@ -1255,11 +1255,11 @@ local function inject_everything(head,where) insert_node_after(pre,n,newkern(rightkern)) done = true end - end - if hasmarks then - local pm = i.markbasenode - if pm then - processmark(pm,current,i) + if hasmarks then + local pm = i.markbasenode + if pm then + processmark(pm,current,i) + end end end end @@ -1287,11 +1287,11 @@ local function inject_everything(head,where) insert_node_after(post,n,newkern(rightkern)) done = true end - end - if hasmarks then - local pm = i.markbasenode - if pm then - processmark(pm,current,i) + if hasmarks then + local pm = i.markbasenode + if pm then + processmark(pm,current,i) + end end end end @@ -1319,11 +1319,11 @@ local function inject_everything(head,where) insert_node_after(replace,n,newkern(rightkern)) done = true end - end - if hasmarks then - local pm = i.markbasenode - if pm then - processmark(pm,current,i) + if hasmarks then + local pm = i.markbasenode + if pm then + processmark(pm,current,i) + end end end end |