This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7157728
)
Add more.
author
Shlomi Fish
<shlomif@shlomifish.org>
Sat, 29 Sep 2012 23:14:56 +0000
(
01:14
+0200)
committer
Ricardo Signes
<rjbs@cpan.org>
Mon, 12 Nov 2012 14:18:28 +0000
(09:18 -0500)
lib/perl5db.pl
patch
|
blob
|
blame
|
history
diff --git
a/lib/perl5db.pl
b/lib/perl5db.pl
index
8587dd2
..
7983bdf
100644
(file)
--- a/
lib/perl5db.pl
+++ b/
lib/perl5db.pl
@@
-5235,10
+5235,10
@@
sub cmd_L {
} ## end if (%break_on_load and...
if ($watch_wanted) {
if ( $trace & 2 ) {
- print
$OUT
"Watch-expressions:\n" if @to_watch;
- for my $expr (@to_watch) {
- print
$OUT
" $expr\n";
- last if $signal;
+ print
{$OUT}
"Watch-expressions:\n" if @to_watch;
+
TO_WATCH:
for my $expr (@to_watch) {
+ print
{$OUT}
" $expr\n";
+ last
TO_WATCH
if $signal;
}
} ## end if ($trace & 2)
} ## end if ($watch_wanted)