On Wed, Sep 26, 2018 at 12:08 PM Marcel Krüger <tex@2krueger.de> wrote:
 ---- On Wed, 26 Sep 2018 10:51:57 +0200 Hans Hagen <j.hagen@xs4all.nl> wrote ----
 > On 9/26/2018 12:30 AM, Marcel Krüger wrote:
 > > [...]
 > > She proposed that the ConTeXt fontloader might benefit from overloading
 > > `font.each()` similar to `font.getfont` if the engine should not be changed.
 > 
 > she hasn't reported an issue on the context list (yet)


for the record:

%%% test.tex
Test:
\directlua{
local function recdump(k,v) 
 if type(v)=='table' then 
   print(" >>",k)
   for k1, v1 in pairs(v) do recdump(k1,v1) end
 else 
   print("   ",k,v)
 end 
end

for ii,vv in font.each() do recdump(ii,vv)  end}
\bye

mtxrun --script plain test.tex

is ok (latest context beta) .

--
luigi