diff options
author | Hans Hagen <pragma@wxs.nl> | 2017-05-10 11:26:20 +0200 |
---|---|---|
committer | Context Git Mirror Bot <phg42.2a@gmail.com> | 2017-05-10 11:26:20 +0200 |
commit | fdc4bdf67540ac0b5194641a552903faf9aef3a9 (patch) | |
tree | 2ba7c74480cf68e70bdc6e7105b70baf7f2049c5 /tex/generic | |
parent | 2498bbe606e7cca22799e33dc29ae5160693b3d8 (diff) | |
download | context-fdc4bdf67540ac0b5194641a552903faf9aef3a9.tar.gz |
2017-05-10 10:48:00
Diffstat (limited to 'tex/generic')
-rw-r--r-- | tex/generic/context/luatex/luatex-fonts-merged.lua | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tex/generic/context/luatex/luatex-fonts-merged.lua b/tex/generic/context/luatex/luatex-fonts-merged.lua index 90e4e7624..953d2bf00 100644 --- a/tex/generic/context/luatex/luatex-fonts-merged.lua +++ b/tex/generic/context/luatex/luatex-fonts-merged.lua @@ -1,6 +1,6 @@ -- merged file : c:/data/develop/context/sources/luatex-fonts-merged.lua -- parent file : c:/data/develop/context/sources/luatex-fonts.lua --- merge date : 05/09/17 10:14:12 +-- merge date : 05/10/17 10:41:46 do -- begin closure to overcome local limits and interference @@ -19827,7 +19827,7 @@ local function inject_everything(head,where) ox=px-pn.markx if pn.checkmark then local wn=getwidth(n) - if wn~=0 then + if wn and wn~=0 then wn=wn/2 if trace_injections then report_injections("correcting non zero width mark %C",getchar(n)) @@ -20014,7 +20014,7 @@ local function inject_everything(head,where) if hasmarks then local pm=i.markbasenode if pm then - processmark(pm,current,i) + processmark(pm,n,i) end end end @@ -20044,7 +20044,7 @@ local function inject_everything(head,where) if hasmarks then local pm=i.markbasenode if pm then - processmark(pm,current,i) + processmark(pm,n,i) end end end @@ -20074,7 +20074,7 @@ local function inject_everything(head,where) if hasmarks then local pm=i.markbasenode if pm then - processmark(pm,current,i) + processmark(pm,n,i) end end end |