Re: [Bug-apl] HOWTOs

2018-07-29 Thread Peter Teeson
Hi Jüergen: Thank you for your Communications Cookbook. I just read it through and its really a helpful reference…. respect…. Peter > On Jul 28, 2018, at 11:54 AM, Juergen Sauermann > wrote: > > Hi, > > I have added a new directory named HOWTOs for descriptions of how > not-so-obvious thing

Re: [Bug-apl] Yet another editor thingy.

2018-07-29 Thread Chris Moller
Hi, Jürgen, So far as I  can tell, after all the testing I can throw at it, my editor interface function is ready for the world. Unfortunately, it needs a small patch to APL itself: Index: LineInput.cc === --- LineInput.cc   

Re: [Bug-apl] Yet another editor thingy.

2018-07-29 Thread Xiao-Yong Jin
EINTR could happen in many situations. The usual resolution for EINTR is to retry whatever system call that failed because of EINTR. Here, we should call fgetc again. Best, Xiao-Yong > On Jul 29, 2018, at 4:10 PM, Chris Moller wrote: > > Hi, Jürgen, > > So far as I can tell, after all the t

Re: [Bug-apl] Yet another editor thingy.

2018-07-29 Thread Chris Moller
Ultimately, that's exactly what happens, but "goto again;" didn't work Though I just thought of something I'll try in the morning... On 29/07/18 21:19, Xiao-Yong Jin wrote: EINTR could happen in many situations. The usual resolution for EINTR is to retry whatever system call that failed becau