[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[no subject]
- To: (BUG LISP) at MIT-MC
- From: KMP at MIT-MC (Kent M. Pitman)
- Date: Sat, 2 Dec 78 03:45:00 GMT
- Cc: RWK at MIT-MC
- Original-date: 1 DEC 1978 2245-EST
(SETPLIST 'FOO '(SOME THING))
(NCONC '(A . FOO) '(B . FOO) '(C . FOO))
will never return. Apparently (even with *RSET set!!) it traces down the
CDR of the atom. Creating an invisible circularity. The CDR of FOO becomes
first (SOME THING) then (SOME THING B . FOO) then it seems to CDR forever
looking for the end of the list! This shouldn't happen. It is gross to debug
and I would be willing to spend the time every NCONC to have it make this
check. I would like this to be an error.