summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2000-08-08 18:01:11 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2000-08-08 18:01:11 +0000
commita223bd6128bafe323fc3be7c344f6b66aa25af02 (patch)
tree56d630aac698514d6bedd52f70071a1f3134a069 /lib
parent8f98a6b9b412fbed4fa18dc55b1f33d38770f223 (diff)
downloadperl-a223bd6128bafe323fc3be7c344f6b66aa25af02.tar.gz
Re-apply #6549.
p4raw-id: //depot/perl@6551
Diffstat (limited to 'lib')
-rw-r--r--lib/perl5db.pl10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/perl5db.pl b/lib/perl5db.pl
index cc6a405823..7257aa90d4 100644
--- a/lib/perl5db.pl
+++ b/lib/perl5db.pl
@@ -899,9 +899,9 @@ EOP
print $OUT "Will stop on load of `@{[join '\', `', sort keys %break_on_load]}'.\n";
next CMD; };
$cmd =~ /^b\b\s*(postpone|compile)\b\s*([':A-Za-z_][':\w]*)\s*(.*)/ && do {
- my $cond = $3 || '1';
+ my $cond = length $3 ? $3 : '1';
my ($subname, $break) = ($2, $1 eq 'postpone');
- $subname =~ s/\'/::/;
+ $subname =~ s/\'/::/g;
$subname = "${'package'}::" . $subname
unless $subname =~ /::/;
$subname = "main".$subname if substr($subname,0,2) eq "::";
@@ -910,8 +910,8 @@ EOP
next CMD; };
$cmd =~ /^b\b\s*([':A-Za-z_][':\w]*(?:\[.*\])?)\s*(.*)/ && do {
$subname = $1;
- $cond = $2 || '1';
- $subname =~ s/\'/::/;
+ $cond = length $2 ? $2 : '1';
+ $subname =~ s/\'/::/g;
$subname = "${'package'}::" . $subname
unless $subname =~ /::/;
$subname = "main".$subname if substr($subname,0,2) eq "::";
@@ -931,7 +931,7 @@ EOP
next CMD; };
$cmd =~ /^b\b\s*(\d*)\s*(.*)/ && do {
$i = $1 || $line;
- $cond = $2 || '1';
+ $cond = defined $2 ? $2 : '1';
if ($dbline[$i] == 0) {
print $OUT "Line $i not breakable.\n";
} else {