Page 1 of 1

Development release newLISP v.10.7.3

Posted: Mon Oct 09, 2017 5:12 pm
by 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/develo ... lease.html

This release is the base for a stable release 10.7.4 in January 2018.

Re: Development release newLISP v.10.7.3

Posted: Mon Oct 09, 2017 8:12 pm
by TedWalther
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!

Re: Development release newLISP v.10.7.3

Posted: Tue Oct 10, 2017 10:59 am
by johu
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,

ERR: invalid list index in function set

Posted: Wed Mar 21, 2018 7:02 am
by shoukei
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.

Code: Select all

(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.

Re: Development release newLISP v.10.7.3

Posted: Sun Mar 25, 2018 9:14 pm
by 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/developmen ... 10.7.4.txt

Uploading doesn't work now

Posted: Mon Mar 26, 2018 3:33 am
by shoukei
Lutz wrote: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/developmen ... 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.
viewtopic.php?f=2&t=4870&p=23967&hilit=shoukei#p23965

Best Regards,
Shoukei

Re: Development release newLISP v.10.7.3

Posted: Mon Mar 26, 2018 2:43 pm
by 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/de ... nprogress/

Not tested yet on Windows and Linux.

Re: Development release newLISP v.10.7.3

Posted: Tue Mar 27, 2018 5:25 am
by shoukei
Lutz wrote:More changes. This works on macOS for your data and test-code and for upload.cgi without file corruption:
http://newlisp.nfshost.com/downloads/de ... nprogress/

Not tested yet on Windows and Linux.
Thanks Lutz!

Everything works now.