newLISP Fan Club

Forum => newLISP newS => Topic started by: Lutz on October 09, 2017, 10:12:31 AM

Title: Development release newLISP v.10.7.3
Post by: Lutz on October 09, 2017, 10:12:31 AM
Development release newLISP v.10.7.3 fixes bugs and adds a non-blocking option to 'read-key'.



http://www.newlisp.org/downloads/development/



http://www.newlisp.org/downloads/development/newLISP-10.7.3-Release.html



This release is the base for a stable release 10.7.4 in January 2018.
Title: Re: Development release newLISP v.10.7.3
Post by: TedWalther on October 09, 2017, 01:12:29 PM
Wow, how did you know.  This week for the first time in many years of using newlisp, I used read-key.  And then I came to a use-case where I wanted non-blocking.  I tried using "peek" for this, but it didn't work.  Thank you for adding non-blocking read-key!
Title: Re: Development release newLISP v.10.7.3
Post by: johu on October 10, 2017, 03:59:31 AM
Hello, Lutz.



line 2002889 in newlisp_manual v10.7.3

<p>Wen using the <tt>true</tt> flag the <tt>read-key</tt> is non-blocking

  ↓

<p>When using the <tt>true</tt> flag the <tt>read-key</tt> is non-blocking



maybe



Regards,
Title: ERR: invalid list index in function set
Post by: shoukei on March 21, 2018, 12:02:10 AM
Hello,



I am reading a tsv file into an array but I'm getting "ERR: invalid list index in function set"

in newLISP 10.7.4. and 10.7.3.



(setq addrlist (array 27000 4))
(setq filename "zenkoku2.tsv")

(set 'data-file (open filename "read"))
(setq NR 0)
(while (read-line data-file)
       (setq thisline (current-line))
       (setq thisline (parse thisline "t" 0))
       (println NR)
       (println thisline)
       (setq (addrlist NR 0) (thisline 0))
       (setq (addrlist NR 1) (thisline 1))
       (setq (addrlist NR 2) (thisline 2))
       (setq (addrlist NR 3) (thisline 3))
       (inc NR)
       )
(close data-file)


But it works with version 10.7.2.

I don't know why it doesn't work with the latest versions.



Thanks.
Title: Re: Development release newLISP v.10.7.3
Post by: Lutz on March 25, 2018, 02:14:22 PM
Your code will work with v10.7.4 like in v10.7.1 here:

http://newlisp.org/downloads/development/inprogress/



See the paragraph about synchronizing file positions from stream and raw file access:

http://newlisp.org/downloads/development/inprogress/CHANGES-10.7.4.txt
Title: Uploading doesn't work now
Post by: shoukei on March 25, 2018, 08:33:46 PM
Quote from: "Lutz"Your code will work with v10.7.4 like in v10.7.1 here:

http://newlisp.org/downloads/development/inprogress/



See the paragraph about synchronizing file positions from stream and raw file access:

http://newlisp.org/downloads/development/inprogress/CHANGES-10.7.4.txt


Thank you Lutz for the fix.



Reading the tsv file now works great.



But uploading doesn't work again like what happened some time ago. The uploaded file is corrupt.

I remember that was related to 'seek' also.

//http://www.newlispfanclub.alh.net/forum/viewtopic.php?f=2&t=4870&p=23967&hilit=shoukei#p23965



Best Regards,

Shoukei
Title: Re: Development release newLISP v.10.7.3
Post by: Lutz on March 26, 2018, 07:43:06 AM
More changes. This works on macOS for your data and test-code and for upload.cgi without file corruption:

http://newlisp.nfshost.com/downloads/development/inprogress/



Not tested yet on Windows and Linux.
Title: Re: Development release newLISP v.10.7.3
Post by: shoukei on March 26, 2018, 10:25:03 PM
Quote from: "Lutz"More changes. This works on macOS for your data and test-code and for upload.cgi without file corruption:

http://newlisp.nfshost.com/downloads/development/inprogress/



Not tested yet on Windows and Linux.


Thanks Lutz!



Everything works now.