in reply to Re^8: Convenient way to use 5.10 features in perldebugger?
in thread Convenient way to use 5.10 features in perldebugger?

> maybe the use is restricted to real debugging (breakpoints and so on ..) and not meant for interactive shells.

actually that's the case, e.g. when stepping with n thru a program the pre- and post-prompt commands are executed.

They are NOT executed when entering any perl lines.

to test try something like  perl -de'for (1..1000) {0}' and type n.

And BTW all these automatic commands have their own scope.

Cheers Rolf