[slime-devel] stepping

Hi, Somehow, it doesn't work in my allegro, using SLIME PQ> (defun fact (n) (if (= n 1) 1 (* n (fact (1- n))))) FACT PQ> (fact 3) 6 PQ> (compile 'fact) FACT NIL NIL PQ> :step nil NIL PQ> (step fact) (FACT) PQ> (fact 3) 6 PQ> I'd appreciate any suggestions. Roman

Roman Budzianowski <roman.j@budzianowski.net> writes:
Hi,
Somehow, it doesn't work in my allegro, using SLIME
PQ> (defun fact (n) (if (= n 1) 1 (* n (fact (1- n))))) FACT PQ> (fact 3) 6 PQ> (compile 'fact) FACT NIL NIL PQ> :step nil NIL PQ> (step fact) (FACT) PQ> (fact 3) 6 PQ>
I'd appreciate any suggestions.
How does this relate to Slime? Or do you want to say that it works on the terminal, without Slime? (Notice that the above call to STEP is actually bogus, at least according to how STEP is specified.) -T.

Here's an example of stepping in allegro cl. And yes, it works in tty. http://www.franz.com/support/documentation/6.2/doc/debugging.htm#stepper-1 On Jul 4, 2008, at 3:16 PM, Tobias C. Rittweiler wrote:
Roman Budzianowski <roman.j@budzianowski.net> writes:
Hi,
Somehow, it doesn't work in my allegro, using SLIME
PQ> (defun fact (n) (if (= n 1) 1 (* n (fact (1- n))))) FACT PQ> (fact 3) 6 PQ> (compile 'fact) FACT NIL NIL PQ> :step nil NIL PQ> (step fact) (FACT) PQ> (fact 3) 6 PQ>
I'd appreciate any suggestions.
How does this relate to Slime? Or do you want to say that it works on the terminal, without Slime?
(Notice that the above call to STEP is actually bogus, at least according to how STEP is specified.)
-T.
_______________________________________________ slime-devel site list slime-devel@common-lisp.net http://common-lisp.net/mailman/listinfo/slime-devel

On Fri, 2008-07-04 at 17:53 -0700, Roman Budzianowski wrote:
Here's an example of stepping in allegro cl. And yes, it works in tty.
http://www.franz.com/support/documentation/6.2/doc/debugging.htm#stepper-1
SLIME runs its own REPL which has nothing to do with Allegro's -- Stelian Ionescu a.k.a. fe[nl]ix Quidquid latine dictum sit, altum videtur.
participants (3)
-
Roman Budzianowski
-
Stelian Ionescu
-
Tobias C. Rittweiler