newLISP Fan Club

Forum => newLISP newS => Topic started by: starseed on August 21, 2006, 10:16:11 AM

Title: BUG: Crash with replace-assoc
Post by: starseed on August 21, 2006, 10:16:11 AM
I found a crash


newLISP v.8.9.6 on Win32 MinGW.
> (set 'test '((name "ingo")(last "Hohmann")))
((name "ingo") (last "Hohmann"))
> (push '(name1 "Whalesong") test)
(name1 "Whalesong")
> (replace-assoc 'name1 test (name1 "Starseed"))

invalid function in function replace-assoc : (name1 "Starseed")

(CRASHES)


The problem is related to the assoc replacement not being quoted.



Regards,



Ingo
Title:
Post by: Lutz on August 22, 2006, 08:12:49 AM
put a quote in front of the replacement:


(replace-assoc 'name1 test '(name1 "Starseed"))

else it will try to evaluate the non-exisiting function name1. But it shouldn't crash on the error, will investigate.



Lutz
Title:
Post by: Lutz on August 22, 2006, 08:42:06 AM
This happened when replacing the first element with 'replace-assoc' and an error occured when evaluating the replacement.



This is fixed in 8.9.7, which will be released by the end of the week.



Lutz
Title:
Post by: starseed on August 22, 2006, 12:31:31 PM
Yes,



that's what I thought ... whatever I did wrong, newLISP shouldn't crash ;-)



Mind you, I'm already very proficient in bugging newlisp programs, _debugging_ is a skill I still have to develop.



Thank you!





Ingo