From: Dai Yuwen
Subject: How to "go step" or "step into" in lisp debugger?
Date: 
Message-ID: <au8oej$2oal$1@mail.cn99.com>
Hi,  All

I'm new to lisp and not familiar with lisp debugging.  What I can is insert 
"break" in my programs.  But sometime I need do single step or step-into. 
How do that?  Thanks in advance.

Best regards,
Dai Yuwen

From: Edi Weitz
Subject: Re: How to "go step" or "step into" in lisp debugger?
Date: 
Message-ID: <87n0mveskf.fsf@bird.agharta.de>
Dai Yuwen <·····@micetek.com.cn> writes:

> Hi,  All
> 
> I'm new to lisp and not familiar with lisp debugging.  What I can is
> insert "break" in my programs.  But sometime I need do single step or
> step-into. How do that?  Thanks in advance.
> 
> Best regards,
> Dai Yuwen

This depends on your implementation. Here's for example how to do it
with CMUCL or LispWorks:

  <http://cvs2.cons.org/ftp-area/cmucl/doc/cmu-user/debugger.html#toc81>
  <http://www.lispworks.com/reference/lwl42/LWRM-U/html/lwref-u-74.htm#marker-887865>

Edi.
From: Dai Yuwen
Subject: Re: How to "go step" or "step into" in lisp debugger?
Date: 
Message-ID: <augi63$8v0$1@mail.cn99.com>
Edi Weitz wrote:

> Dai Yuwen  writes:
>
>
> >Hi,  All
> >
> >I'm new to lisp and not familiar with lisp debugging.  What I can is
> >insert "break" in my programs.  But sometime I need do single step or
> >step-into. How do that?  Thanks in advance.
> >
> >Best regards,
> >Dai Yuwen
>
>
> This depends on your implementation. Here's for example how to do it
> with CMUCL or LispWorks:
>
>
>
>
> Edi.


Thank you very much.  I use clisp.  Now I can use (step (foo ...)) to debug 
my functions.

Dai Yuwen
From: Richard C J Putman
Subject: Re: How to "go step" or "step into" in lisp debugger?
Date: 
Message-ID: <isxfrz3l.fsf@physics.org>
Dai Yuwen <·····@micetek.com.cn> writes:

> Edi Weitz wrote:
> 
> > Dai Yuwen  writes:
> >
> >
> > >Hi,  All
> > >
> > >I'm new to lisp and not familiar with lisp debugging.  What I can is
> > >insert "break" in my programs.  But sometime I need do single step or
> > >step-into. How do that?  Thanks in advance.
> > >
> > >Best regards,
> > >Dai Yuwen
> >
> >
<snip>
> 
> Thank you very much.  I use clisp.  Now I can use (step (foo ...)) to
> debug my functions.
> 
> 
> Dai Yuwen

In that case take a look at http://jabberwocky.sourceforge.net which
is a GUI frontend to clisp and includes a graphical debugger along the
lines of Visual Studio with 'watches' and allows stepping through
forms using function keys etc.  

Richard