[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Misleading error message
- To: (BUG LISP) at MIT-MC
- Subject: Misleading error message
- From: KMP at MIT-MC (Kent M. Pitman)
- Date: Fri, 10 Apr 81 20:21:00 GMT
- Original-date: 10 APR 1981 1521-EST
(SSTATUS /! #'(LAMBDA () (READ)) SPLICING)
'(A . C !(C))
;MULTIPLE SPLICING MACROS RETURNED NON-NIL AFTER "." -- READ
This error message is misleading for two reasons:
* There is only one splicing macro involved.
* Non-NIL values are not the issue. Eg, '(A . !(B)) returns
(A . B) as expected.
-kmp