Re: extend perl debugger

2005-12-06 Thread Michael Seele
hi, i've now trying to run your example but there is one problem: i cannot set $DB::trace to 4! when i execute "$DB::trace |= 4;" as comand in the debugger, it doesn't change the trace value(because the eval block saves the $DB::trace content before evaluating "$DB::trace |= 4;" and reset the

Re: extend perl debugger

2005-12-06 Thread Michael Seele
this is the big problem: i can't work with a .perldb file! but yesterday evening i found another solution: you can implement the afterinit and the watchfunction method in the environment variable PERL5DB! :-) but thx also for your replys!!! Joe McMahon wrote: On Dec 6, 2005, at 2:47 AM, Mich