From: Sandro Santilli Date: Fri, 23 Dec 2011 17:33:13 +0000 (+0000) Subject: support multiline function signatures at the parsing stage too... X-Git-Tag: 2.0.0alpha1~340 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fbca1530f281a1f3df2bfb4d3f35f9961a60cf37;p=postgis support multiline function signatures at the parsing stage too... git-svn-id: http://svn.osgeo.org/postgis/trunk@8535 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/utils/create_undef.pl b/utils/create_undef.pl index da726a46b..323c35a01 100755 --- a/utils/create_undef.pl +++ b/utils/create_undef.pl @@ -201,7 +201,7 @@ print "-- Drop all functions except " . (keys %type_funcs) . " needed for type d foreach my $fn (@funcs) { - if ($fn =~ /.* function ([^(]+)\((.*)\)/i ) + if ($fn =~ /.* function ([^(]+)\((.*)\)/is ) # can be multiline { my $fn_nm = $1; my $fn_arg = $2;