In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] (Gabor Szabo) writes: > >Any idea how can I use the debugger to find the cause of >a deep recursion in my code ?
I don't see the need for the debugger. Deep recursion is a warning, so
just turn the warning into a fatal error with stack trace:
% perl -MCarp=confess -we '$SIG{__WARN__} = sub {confess @_ }; \
sub foo { foo() } foo'
--
Peter Scott
http://www.perldebugged.com/
*** NEW *** http//www.perlmedic.com/
