Funny symbol table names can be shared, too
Rafael Garcia-Suarez [Fri, 12 Oct 2007 07:47:42 +0000 (07:47 +0000)]
p4raw-id: //depot/perl@32103

ext/Opcode/Safe.pm

index fc3ff08..1ce787b 100644 (file)
@@ -231,9 +231,6 @@ sub share_from {
     my $arg;
     foreach $arg (@$vars) {
        # catch some $safe->share($var) errors:
-       croak("'$arg' not a valid symbol table name")
-           unless $arg =~ /^[\$\@%*&]?\w[\w:]*$/
-               or $arg =~ /^\$\W$/;
        my ($var, $type);
        $type = $1 if ($var = $arg) =~ s/^(\W)//;
        # warn "share_from $pkg $type $var";