pol wrote:
> I have just got the error
>
> Maxima encountered a Lisp error: Type-error in
> KERNEL::OBJECT-NOT-LIST-ERROR-HANDLER: |&STYLE,[POINTS,4,3,3]| is not of
> type LIST
> Automatically continuing.
> To reenable the Lisp debugger set *debugger-hook* to nil.
>
> I cannot find any commaand in wxmaxima to do that
> I have tried
> debugger-hook:nil
> but no avail
>
>
> Any hints?
*debugger-hook* is a Lisp variable. You will need to do something like
:lisp (setf *debugger-hook* nil)
I don't know if that works in wxmaxima or not.
Assuming that this does work, what you will get is the Lisp debugger.
This will almost surely confuse wxmaxima.
Unless you're willing to use the Lisp debugger to debug the problem,
this probably won't help you much.
Ray