BUG: Crash with replace-assoc
Posted: Mon Aug 21, 2006 5:16 pm
I found a crash
The problem is related to the assoc replacement not being quoted.
Regards,
Ingo
Code: Select all
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)
Regards,
Ingo