More bugfixes for the upcoming 9.3 release. Source only.
files and changes notes: http://newlisp.org/downloads/development/
Lutz
development release newLISP 9.2.15
-
- Posts: 2038
- Joined: Tue Nov 29, 2005 8:28 pm
- Location: latiitude 50N longitude 3W
- Contact:
can you be more specific? 'replace-assoc' runs the usual tests fine. 'set-assoc' is the renamed 'replace-assoc', but the old naming will stay for a while.Scripts that use replace-assoc dont give a warning they just behave strange..
Can you give a specific example where 'replace-assoc' now behaves differently? I want to release 9.3 in a few days, so this would be important to know.
Lutz
Why ?
Hi Lutz..
Why "string index out of bounds" ? ->
> (set 'a 10)
10
> (set 'b '( "one" "two" "three"))
("one" "two" "three")
> (set 'c '( "high" "low" "vertical"))
("high" "low" "vertical")
> ( (b 2) a (c 0))
string index out of bounds
Why "string index out of bounds" ? ->
> (set 'a 10)
10
> (set 'b '( "one" "two" "three"))
("one" "two" "three")
> (set 'c '( "high" "low" "vertical"))
("high" "low" "vertical")
> ( (b 2) a (c 0))
string index out of bounds
-- (define? (Cornflakes))