[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: debug
- To: info-mcl@services.cambridge.apple.com
- Subject: Re: debug
- From: neves@aristotle.ils.nwu.edu (Neves )
- Date: 28 Sep 1994 15:27:52 GMT
- Newsgroups: comp.lang.lisp.mcl
- Organization: The Institute for the Learning Sciences
- References: <skramm-280994160231@hfmac398.uio.no>
Yngve Skramm (skramm@ilf.uio.no) wrote:
: Beginner question about MCL 2.0: We can't seem to get trace to work
: properly. It shows values entering and exiting a function, that is correct.
: However a recursive function is called several times, and should produce an
: output from trace every time it is called. This doesn't happen :-( We copy
: the manual exactly, but get a different printout. Has anybody got a
: solution to this problem?
Make sure you include the "notinline" declaration in the recursive
definition. e.g. (declare (notinline fact))
-David
- References:
- debug
- From: skramm@ilf.uio.no (Yngve Skramm)