<div>Answering my own question, in case someone may find it useful --</div><div> </div><div>To fix the problem add the following NOTINLINE declaration to the factorial example :</div><div> </div><div>  (declare (NOTINLINE factorial));<br>
<br></div><div class="gmail_quote">On Sun, Mar 3, 2013 at 6:03 PM, George Thomas <span dir="ltr"><<a href="mailto:gmt.gthomas@gmail.com" target="_blank">gmt.gthomas@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;padding-left:1ex;border-left-color:rgb(204,204,204);border-left-width:1px;border-left-style:solid">
<div dir="ltr"><div>Hi -</div><div>I did the standard installation on my Windows 7, everything seems OK except the trace function. See for example, the following trace is executing but its not doing much. Thanks very much for letting me know what might be wrong below.</div>

<div> </div><div>; SLIME 2011-02-04<br>CL-USER> (defun factorial (N)<br>  "Compute the factorial of N."<br>  (if (= N 1)<br>      1<br>    (* N (factorial (- N 1)))))</div><div>FACTORIAL</div><div><br>CL-USER> (trace factorial)<br>

NIL</div><div><br>CL-USER> (factorial 4)<br>0> Calling (FACTORIAL 4) <br><0 FACTORIAL returned 24<br>24</div><div><br>CL-USER> </div></div>
</blockquote></div><br>