texlive[50099] Master/texmf-dist/tex/context/base/mkiv/font-dsp.lua:
commits+lscarso at tug.org
commits+lscarso at tug.org
Sat Feb 23 16:52:13 CET 2019
Revision: 50099
http://tug.org/svn/texlive?view=revision&revision=50099
Author: lscarso
Date: 2019-02-23 16:52:13 +0100 (Sat, 23 Feb 2019)
Log Message:
-----------
fixed a typo in font-dsp.lua
Modified Paths:
--------------
trunk/Master/texmf-dist/tex/context/base/mkiv/font-dsp.lua
Modified: trunk/Master/texmf-dist/tex/context/base/mkiv/font-dsp.lua
===================================================================
--- trunk/Master/texmf-dist/tex/context/base/mkiv/font-dsp.lua 2019-02-23 09:52:51 UTC (rev 50098)
+++ trunk/Master/texmf-dist/tex/context/base/mkiv/font-dsp.lua 2019-02-23 15:52:13 UTC (rev 50099)
@@ -3502,15 +3502,15 @@
local lastfrom = false
local lastto = false
for i=1,nofvalues do
- local f = read2dot14(f)
- local t = read2dot14(f)
- if lastfrom and f <= lastfrom then
+ local from = read2dot14(f)
+ local to = read2dot14(f)
+ if lastfrom and from <= lastfrom then
-- ignore
- elseif lastto and t >= lastto then
+ elseif lastto and to >= lastto then
-- ignore
else
- values[#values+1] = { f, t }
- lastfrom, lastto = f, t
+ values[#values+1] = { from, to }
+ lastfrom, lastto = from, to
end
end
nofvalues = #values
More information about the tex-live-commits
mailing list