Development release newLISP v.10.7.3

Notices and updates
Locked
Lutz
Posts: 5289
Joined: Thu Sep 26, 2002 4:45 pm
Location: Pasadena, California
Contact:

Development release newLISP v.10.7.3

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

TedWalther
Posts: 608
Joined: Mon Feb 05, 2007 1:04 am
Location: Abbotsford, BC
Contact:

Re: Development release newLISP v.10.7.3

Post 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!
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
Posts: 143
Joined: Mon Feb 08, 2010 8:47 am

Re: Development release newLISP v.10.7.3

Post 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,

shoukei
Posts: 6
Joined: Tue Aug 30, 2016 1:29 pm

ERR: invalid list index in function set

Post 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.
Attachments
zenkoku2.tsv.zip
(238.03 KiB) Downloaded 462 times

Lutz
Posts: 5289
Joined: Thu Sep 26, 2002 4:45 pm
Location: Pasadena, California
Contact:

Re: Development release newLISP v.10.7.3

Post 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

shoukei
Posts: 6
Joined: Tue Aug 30, 2016 1:29 pm

Uploading doesn't work now

Post 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

Lutz
Posts: 5289
Joined: Thu Sep 26, 2002 4:45 pm
Location: Pasadena, California
Contact:

Re: Development release newLISP v.10.7.3

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

shoukei
Posts: 6
Joined: Tue Aug 30, 2016 1:29 pm

Re: Development release newLISP v.10.7.3

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

Locked