[bug]unhandled condition in --disable-debugger mode, quitting
Subject: [bug]unhandled condition in --disable-debugger mode, quitting
From: Raymond Toy
Date: Tue, 05 Sep 2006 17:42:12 -0400
>>>>> "Robert" == Robert Dodier <robert.dodier at gmail.com> writes:
Robert> On 9/5/06, Leon <sdl.web at googlemail.com> wrote:
>> Maxima with maxima-runtime-sbcl will exit abnormally with a stupid
>> command like help(diff);
Robert> Not sure why SBCL is complaining, but probably you want to enter
CMUCL complains too. And it's because $help in init-cl.lisp is
defined to take no args. Here is a replacement that will handle this
better:
(defun $help (&rest args)
(declare (ignore args))
$help)
Now it just prints out:
(%i1) help(diff);
(%o1) type describe(topic) or example(topic);
Ray