From eb80ce7b34f59896a1dfee5ca422495394d6677f Mon Sep 17 00:00:00 2001 From: Norbert Preining Date: Sun, 24 Feb 2019 15:11:59 +0000 Subject: 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 --- Master/texmf-dist/tex/context/base/mkiv/font-dsp.lua | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'Master/texmf-dist/tex/context/base/mkiv') 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 -- cgit v1.2.3