On Wed, Mar 2, 2011 at 2:40 AM, Xu Jingtao jingtaozf@gmail.com wrote:
I redefined the type char-code-integer in mapping.lisp under cmucl. this idea is from here: http://comments.gmane.org/gmane.lisp.cmucl.general/6316 ============================================================================= (deftype char-code-integer () "The subtype of integers which can be returned by the function CHAR-CODE." #-:cmu '(integer 0 #.(1- char-code-limit)) #+:cmu '(integer 0 65533)) ============================================================================= Maybe you could try to redefine it under ecl.
Thanks, I've applied this patch to the BKNR repository. Does CMUCL pass all tests after this change?
(I don't think this is the OP's problem, though.)