in suprv.lisp please try replacing with
#+cl (char< (cadr x)
#. (code-char 160.))
#+cl (< (char-code x) 160)
Note in the previous version of clisp this bug did not arise, since
there
[1]> (code-char 160)
#\U00A0
which was acceptable to their compiler..
william