Loosen conditons for recognizing a function name in perl.h to accomodate revisions
Charles Bailey [Mon, 23 Aug 1999 03:21:46 +0000 (03:21 +0000)]
p4raw-id: //depot/vmsperl@4023

vms/gen_shrfls.pl

index 3e70372..05d0f27 100644 (file)
@@ -188,7 +188,7 @@ sub scan_func {
   my($line) = @_;
 
   print "\tchecking for global routine\n" if $debug > 1;
-  if ( $line =~ /(\w+)\s+\(/ ) {
+  if ( $line =~ /(\w+)\s*\(/ ) {
     print "\troutine name is \\$1\\\n" if $debug > 1;
     if ($1 eq 'main' || $1 eq 'perl_init_ext') {
       print "\tskipped\n" if $debug > 1;