On 27 May 2010 06:46, Warren Lynn <wrn.lynn@...> wrote:
> The function SB-IMPL::QUICK-INTEGER-TO-STRING is undefined.
>
> I started a fresh SBCL session, and indeed I could not even find the
> SB-IMPL::QUICK-INTEGER-TO-STRING symbol.
>
> I assume the Elephant devel team know what they are doing. So do I need any
> special build customization to have this function?
Actually, in this case they did not know what they were doing.
SB-IMPL::QUICK-INTEGER-TO-STRING was an internal function that was
deleted approximately a year ago.
You can replace the call with eg. (write-to-string <int> :pretty nil
:radix nil :base 10).
Cheers,
-- Nikodemus
|