<div dir="ltr"><div class="gmail_extra"><br><div class="gmail_quote">On Fri, Jun 28, 2013 at 11:48 AM, Matthew Mondor <span dir="ltr"><<a href="mailto:mm_lists@pulsar-zone.net" target="_blank">mm_lists@pulsar-zone.net</a>></span> wrote:<br>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div id=":1ix" style="overflow:hidden">But in the SLIME debugger I'm unable to locate those 1 2 3 4 5 which<br>
were pushed on the stack (and there is no function to try to query the<br>
argument list from, since it's an unexisting function, its frame was<br>
never entered).<br></div></blockquote></div><br>Sorry, I was confused by your needs. There is no notion of arguments in the debugger information. The only notion rigth now is that of lexically and globally bound variables. Thus, the only exposed "values" are those assigned to variables. Since your function is not defined, when the error handler is invoked, those values are not assigned to any variable and cannot be inspected by the debugger.<br>

<br>The only possible fix I see for this is to add some convenience functions to peek the interpreter stack. This can easily be done, adding a few more commands to the debugger and using the C interface to get those values. The basic tool is ECL_STACK_REF(env,relative_index), a C macro that accesses the interpreter stack. With this macro and a small c-inline code, one can inspect the unassigned values</div>

<div class="gmail_extra"><br></div><div class="gmail_extra">Juanjo<br clear="all"><div><br></div>-- <br>Instituto de Física Fundamental, CSIC<br>c/ Serrano, 113b, Madrid 28006 (Spain) <br><a href="http://juanjose.garciaripoll.googlepages.com" target="_blank">http://juanjose.garciaripoll.googlepages.com</a>
</div></div>