[svn:parrot] r37807 - trunk/t/codingstd
coke at svn.parrot.org
coke at svn.parrot.org
Sun Mar 29 04:01:28 UTC 2009
Author: coke
Date: Sun Mar 29 04:01:23 2009
New Revision: 37807
URL: https://trac.parrot.org/parrot/changeset/37807
Log:
[t] strip a few more argument types.
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 18:00:23 2009 (r37806)
+++ trunk/t/codingstd/c_function_docs.t Sun Mar 29 04:01:23 2009 (r37807)
@@ -48,7 +48,7 @@
$function_decl =~ s/^\s*PARROT_[A-Z_]*\b\s+//gm;
# strip out any ARG* modifiers
- $function_decl =~ s/ARG(?:IN|IN_NULLOK|OUT|MOD|FREE)\((.*?)\)/$1/g;
+ $function_decl =~ s/ARG(?:IN|IN_NULLOK|OUT|OUT_NULLOK|MOD|MOD_NULLOK|FREE)\((.*?)\)/$1/g;
# strip out the SHIM modifier
$function_decl =~ s/SHIM\((.*?)\)/$1/g;
More information about the parrot-commits
mailing list