texlive[50111] Master/texmf-dist/tex/context/base/mkiv/font-dsp.lua:

commits+preining at tug.org commits+preining at tug.org
Sun Feb 24 16:11:59 CET 2019


Revision: 50111
          http://tug.org/svn/texlive?view=revision&revision=50111
Author:   preining
Date:     2019-02-24 16:11:59 +0100 (Sun, 24 Feb 2019)
Log Message:
-----------
Revert "fixed a typo in font-dsp.lua"

This reverts commit 28403cf284b6470974feb06d05fa84b83efcbe0c.

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-24 01:23:36 UTC (rev 50110)
+++ trunk/Master/texmf-dist/tex/context/base/mkiv/font-dsp.lua	2019-02-24 15:11:59 UTC (rev 50111)
@@ -3502,15 +3502,15 @@
             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



More information about the tex-live-commits mailing list