What the ****?!?
(setf stopme nil)
(while (nil? stopme)
(setf r (read-line))
(if (find "exit" r) (setf stopme true))
(println "Line: " r)
)
Run this. Type a few keys, hit ENTER.
Now, hit CONTROL-D
(be prepared to hit Control-Z and then kill newlisp)
An uncleared EOF condition on the input stream in 'read-line'.
This is fixed here: http://www.newlisp.org/downloads/development/inprogress/
Wow, Lutz! Very fast turnaround. Obviously, California hasn't slowed you down. ;) Thanks! --Ricky
Pasadena coffee shops keep me well caffeinated ;)
My goal is to have something I've requested or found referenced in every set of release notes since 2005...
Looks like I'm in 10.3.1 too! :)
Quote from: "Lutz"
An uncleared EOF condition on the input stream in 'read-line'.
This is fixed here: http://www.newlisp.org/downloads/development/inprogress/