Development release newLISP v.10.7.3

Started by Lutz, October 09, 2017, 10:12:31 AM

Previous topic - Next topic

Lutz

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/



http://www.newlisp.org/downloads/development/newLISP-10.7.3-Release.html">http://www.newlisp.org/downloads/develo ... lease.html">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.

TedWalther

#1
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!
Cavemen in bearskins invaded the ivory towers of Artificial Intelligence.  Nine months later, they left with a baby named newLISP.  The women of the ivory towers wept and wailed.  \"Abomination!\" they cried.

johu

#2
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,

shoukei

#3
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.

Lutz

#4
Your code will work with v10.7.4 like in v10.7.1 here:

http://newlisp.org/downloads/development/inprogress/">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">http://newlisp.org/downloads/developmen ... 10.7.4.txt">http://newlisp.org/downloads/development/inprogress/CHANGES-10.7.4.txt

shoukei

#5
Quote from: "Lutz"Your code will work with v10.7.4 like in v10.7.1 here:

http://newlisp.org/downloads/development/inprogress/">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">http://newlisp.org/downloads/developmen ... 10.7.4.txt">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">//http://www.newlispfanclub.alh.net/forum/viewtopic.php?f=2&t=4870&p=23967&hilit=shoukei#p23965



Best Regards,

Shoukei

Lutz

#6
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/">http://newlisp.nfshost.com/downloads/de ... nprogress/">http://newlisp.nfshost.com/downloads/development/inprogress/



Not tested yet on Windows and Linux.

shoukei

#7
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/">http://newlisp.nfshost.com/downloads/de ... nprogress/">http://newlisp.nfshost.com/downloads/development/inprogress/



Not tested yet on Windows and Linux.


Thanks Lutz!



Everything works now.