warn on C<my($foo,$foo)>
[p5sagit/p5-mst-13.2.git] / embed.pl
index a7fb0ed..1d10c6c 100755 (executable)
--- a/embed.pl
+++ b/embed.pl
@@ -37,7 +37,6 @@ sub readsyms (\%$) {
 }
 
 readsyms %global, 'global.sym';
-readsyms %interp, 'interp.sym';
 
 sub readvars(\%$$) {
     my ($syms, $file,$pre) = @_;
@@ -80,12 +79,6 @@ foreach my $sym (sort keys %globvar)
    }
  }
 
-foreach my $sym (keys %interp)
- {
-  warn "extra $sym in interp.sym\n" 
-   unless exists $intrp{$sym} || exists $thread{$sym};
- }
-
 foreach my $sym (sort keys %thread)
  {
   warn "$sym in intrpvar.h\n" if exists $intrp{$sym};