[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Clisp question




> im almost sure it's not the right solution, but i run
> across this problem all the time and it works for me
> to define this in my init file:
> 
> #+clisp
> (defun undef (symbol)
>   (setf (get symbol 'clos::class) nil))

Clisp has logical-pathnames built-in.
Your program is trying to redefine them with its own version.
This isn't necessary.  You must delete the offending expressions
_from the program_, not from Clisp.

P.