On Mon, Jun 1, 2009 at 1:59 PM, Tobias C. Rittweiler tcr@freebits.de wrote:
Compiling BOM-VECTOR emits a "type assertion to complex to check note." The reason is that (THE FOO (QUUX)) is actually of type (VALUES FOO &REST T) which SBCL, at least for the moment, cannot cope well with. The below patch changes it to (THE FOO (VALUES (QUUX))).
Thanks for the patch, I've just pushed it.