summaryrefslogtreecommitdiff
path: root/vms/gen_shrfls.pl
diff options
context:
space:
mode:
authorCharles Bailey <bailey@newman.upenn.edu>1999-08-23 03:21:46 +0000
committerbailey <bailey@newman.upenn.edu>1999-08-23 03:21:46 +0000
commit7f00e73766ccaba587601787c298be86b550fae7 (patch)
treec3c3c9639800e5c1a7182d3e363d4c0425601fc7 /vms/gen_shrfls.pl
parent377875b926c86a98f77adb365611978943fd9ece (diff)
downloadperl-7f00e73766ccaba587601787c298be86b550fae7.tar.gz
Loosen conditons for recognizing a function name in perl.h to accomodate revisions
p4raw-id: //depot/vmsperl@4023
Diffstat (limited to 'vms/gen_shrfls.pl')
-rw-r--r--vms/gen_shrfls.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/vms/gen_shrfls.pl b/vms/gen_shrfls.pl
index 3e70372524..05d0f27c7b 100644
--- a/vms/gen_shrfls.pl
+++ b/vms/gen_shrfls.pl
@@ -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;