diff options
author | Norbert Preining <preining@logic.at> | 2019-02-24 15:11:59 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2019-02-24 15:11:59 +0000 |
commit | eb80ce7b34f59896a1dfee5ca422495394d6677f (patch) | |
tree | 0f571d10c43e92aa4f6c6c48e5e2ed5509275c0f | |
parent | fa915fad364be040a3768803d708e4e6defdf1f8 (diff) |
Revert "fixed a typo in font-dsp.lua"
This reverts commit 28403cf284b6470974feb06d05fa84b83efcbe0c.
git-svn-id: svn://tug.org/texlive/trunk@50111 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r-- | Master/texmf-dist/tex/context/base/mkiv/font-dsp.lua | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Master/texmf-dist/tex/context/base/mkiv/font-dsp.lua b/Master/texmf-dist/tex/context/base/mkiv/font-dsp.lua index f8bf6f2c872..046ba285057 100644 --- a/Master/texmf-dist/tex/context/base/mkiv/font-dsp.lua +++ b/Master/texmf-dist/tex/context/base/mkiv/font-dsp.lua @@ -3502,15 +3502,15 @@ function readers.avar(f,fontdata,specification) local lastfrom = false local lastto = false for i=1,nofvalues do - local from = read2dot14(f) - local to = read2dot14(f) - if lastfrom and from <= lastfrom then + local f = read2dot14(f) + local t = read2dot14(f) + if lastfrom and f <= lastfrom then -- ignore - elseif lastto and to >= lastto then + elseif lastto and t >= lastto then -- ignore else - values[#values+1] = { from, to } - lastfrom, lastto = from, to + values[#values+1] = { f, t } + lastfrom, lastto = f, t end end nofvalues = #values |