summaryrefslogtreecommitdiff
path: root/embed.pl
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1998-09-24 03:30:32 +0000
committerGurusamy Sarathy <gsar@cpan.org>1998-09-24 03:30:32 +0000
commit34b5802582e6ac0ab95ef6940fa408896842b141 (patch)
tree5698c8539cc009f894a977d93c3fd6be271f7c06 /embed.pl
parent762efda7da89e66e6132e666545886910dd743f8 (diff)
downloadperl-34b5802582e6ac0ab95ef6940fa408896842b141.tar.gz
remove bogus warn()
p4raw-id: //depot/perl@1862
Diffstat (limited to 'embed.pl')
-rwxr-xr-xembed.pl7
1 files changed, 3 insertions, 4 deletions
diff --git a/embed.pl b/embed.pl
index 1d10c6c58a..497b97df35 100755
--- a/embed.pl
+++ b/embed.pl
@@ -62,11 +62,10 @@ readvars %globvar, 'perlvars.h','G';
foreach my $sym (sort keys %intrp)
{
- warn "$sym not in interp.sym\n" unless exists $interp{$sym};
if (exists $global{$sym})
{
delete $global{$sym};
- warn "$sym in global.sym as well as interp\n";
+ warn "$sym in global.sym as well as intrpvar.h\n";
}
}
@@ -81,11 +80,11 @@ foreach my $sym (sort keys %globvar)
foreach my $sym (sort keys %thread)
{
- warn "$sym in intrpvar.h\n" if exists $intrp{$sym};
+ warn "$sym in intrpvar.h as well as thrdvar.h\n" if exists $intrp{$sym};
if (exists $global{$sym})
{
delete $global{$sym};
- warn "$sym in global.sym as well as thread\n";
+ warn "$sym in global.sym as well as thrdvar.h\n";
}
}