Re: [NTG-context] util-sha.lua misbehaving?

2019-03-04 Thread Pablo Rodriguez
On 3/4/19 9:20 PM, Hans Hagen wrote: > On 3/4/2019 6:48 PM, Pablo Rodriguez wrote: >> [...] >> Sorry for the impatience (the feature is essential for me): when could >> be the new version expected a beta or stable version of the ConTeXt Suite? > we found the issue last week so it should be in the

Re: [NTG-context] util-sha.lua misbehaving?

2019-03-04 Thread Hans Hagen
On 3/4/2019 6:48 PM, Pablo Rodriguez wrote: On 3/4/19 4:34 PM, luigi scarso wrote: On Thu, Feb 28, 2019 at 10:37 PM Hans Hagen wrote: On 2/28/2019 6:46 PM, Pablo Rodriguez wrote: > Dear list, > Could anyone tell me what I am missing here? it's bug in the engine ... as a

Re: [NTG-context] util-sha.lua misbehaving?

2019-03-04 Thread luigi scarso
On Mon, Mar 4, 2019 at 8:40 PM Pablo Rodriguez wrote: > On 3/4/19 7:33 PM, luigi scarso wrote: > > [...] > > what does > > $ luatex --credits > > say ? > > $ luatex --credits > This is LuaTeX, Version 1.09.2 (TeX Live 2019/dev) > [...] > Development id: 7075 > ok , older. The next one should

Re: [NTG-context] util-sha.lua misbehaving?

2019-03-04 Thread Pablo Rodriguez
On 3/4/19 7:33 PM, luigi scarso wrote: > [...] >  what does  > $ luatex --credits  > say ? $ luatex --credits This is LuaTeX, Version 1.09.2 (TeX Live 2019/dev) [...] Development id: 7075 Pablo -- http://www.ousia.tk

Re: [NTG-context] util-sha.lua misbehaving?

2019-03-04 Thread luigi scarso
On Mon, Mar 4, 2019 at 7:27 PM Pablo Rodriguez wrote: > On 3/4/19 7:12 PM, luigi scarso wrote: > > [...] > > Sorry for the impatience (the feature is essential for me): when > could > > be the new version expected a beta or stable version of the ConTeXt > > Suite? > > > > r7090 |

Re: [NTG-context] util-sha.lua misbehaving?

2019-03-04 Thread Pablo Rodriguez
On 3/4/19 7:12 PM, luigi scarso wrote: > [...] > Sorry for the impatience (the feature is essential for me): when could > be the new version expected a beta or stable version of the ConTeXt > Suite? >   > r7090 | luigi.sca...@gmail.com | > 2019-02-28

Re: [NTG-context] util-sha.lua misbehaving?

2019-03-04 Thread luigi scarso
On Mon, Mar 4, 2019 at 6:48 PM Pablo Rodriguez wrote: > On 3/4/19 4:34 PM, luigi scarso wrote: > > On Thu, Feb 28, 2019 at 10:37 PM Hans Hagen wrote: > > > > On 2/28/2019 6:46 PM, Pablo Rodriguez wrote: > > > Dear list, > > > > > Could anyone tell me what I am missing here? > >

Re: [NTG-context] util-sha.lua misbehaving?

2019-03-04 Thread Pablo Rodriguez
On 3/4/19 4:34 PM, luigi scarso wrote: > On Thu, Feb 28, 2019 at 10:37 PM Hans Hagen wrote: > > On 2/28/2019 6:46 PM, Pablo Rodriguez wrote: > > Dear list, > > > Could anyone tell me what I am missing here? > it's bug in the engine ... as a workaround you can uncomment th etop >

Re: [NTG-context] util-sha.lua misbehaving?

2019-03-04 Thread luigi scarso
On Thu, Feb 28, 2019 at 10:37 PM Hans Hagen wrote: > On 2/28/2019 6:46 PM, Pablo Rodriguez wrote: > > Dear list, > > > Could anyone tell me what I am missing here? > it's bug in the engine ... as a workaround you can uncomment th etop > lines in util-sha and fall back on pure lua > > it should

Re: [NTG-context] util-sha.lua misbehaving?

2019-02-28 Thread Hans Hagen
On 2/28/2019 6:46 PM, Pablo Rodriguez wrote: Dear list, Could anyone tell me what I am missing here? it's bug in the engine ... as a workaround you can uncomment th etop lines in util-sha and fall back on pure lua Hans -

[NTG-context] util-sha.lua misbehaving?

2019-02-28 Thread Pablo Rodriguez
Dear list, I have the following sample: \startluacode function document.capture(cmd, raw) local f = assert(io.popen(cmd, 'r')) local s = assert(f:read('*a')) f:close() if raw then return s end s = string.gsub(s, '^%s+', '') s =