[svn:parrot] r37802 - trunk/t/codingstd
coke at svn.parrot.org
coke at svn.parrot.org
Sat Mar 28 15:37:17 UTC 2009
Author: coke
Date: Sat Mar 28 15:37:17 2009
New Revision: 37802
URL: https://trac.parrot.org/parrot/changeset/37802
Log:
[t] skip more argument modifiers.
Modified:
trunk/t/codingstd/c_function_docs.t
Modified: trunk/t/codingstd/c_function_docs.t
==============================================================================
--- trunk/t/codingstd/c_function_docs.t Sat Mar 28 15:14:09 2009 (r37801)
+++ trunk/t/codingstd/c_function_docs.t Sat Mar 28 15:37:17 2009 (r37802)
@@ -53,6 +53,9 @@
# strip out the SHIM modifier
$function_decl =~ s/SHIM\((.*?)\)/$1/g;
+ # strip out the NULL modifiers
+ $function_decl =~ s/(?:NULLOK|NOTNULL)\((.*?)\)/$1/g;
+
# SHIM_INTERP is still a PARROT_INTERP
$function_decl =~ s/SHIM_INTERP/PARROT_INTERP/g;
More information about the parrot-commits
mailing list