[svn:parrot] r48876 - trunk/src

jkeenan at svn.parrot.org jkeenan at svn.parrot.org
Thu Sep 9 02:26:50 UTC 2010


Author: jkeenan
Date: Thu Sep  9 02:26:50 2010
New Revision: 48876
URL: https://trac.parrot.org/parrot/changeset/48876

Log:
[codingstd] Correct c_parens error -- but c_function_docs error remains.

Modified:
   trunk/src/spf_render.c

Modified: trunk/src/spf_render.c
==============================================================================
--- trunk/src/spf_render.c	Thu Sep  9 02:25:33 2010	(r48875)
+++ trunk/src/spf_render.c	Thu Sep  9 02:26:50 2010	(r48876)
@@ -56,7 +56,7 @@
 /* HEADERIZER BEGIN: static */
 /* Don't modify between HEADERIZER BEGIN / HEADERIZER END.  Your changes will be lost. */
 
-static void canonicalize_exponent (PARROT_INTERP,
+static void canonicalize_exponent(PARROT_INTERP,
     ARGMOD(char *tc),
     ARGIN(SpfInfo *info))
         __attribute__nonnull__(1)
@@ -97,7 +97,7 @@
         FUNC_MODIFIES(*dest)
         FUNC_MODIFIES(*src);
 
-#define ASSERT_ARGS_canonicalize_exponent  __attribute__unused__ int _ASSERT_ARGS_CHECK = (\
+#define ASSERT_ARGS_canonicalize_exponent __attribute__unused__ int _ASSERT_ARGS_CHECK = (\
        PARROT_ASSERT_ARG(interp) \
     , PARROT_ASSERT_ARG(tc) \
     , PARROT_ASSERT_ARG(info))
@@ -310,9 +310,16 @@
    form '...Esddd ', where 's' is the sign, 'ddd' is some number of digits,
    and there may be trailing spaces. */
 
+/*
+
+=item C<static void canonicalize_exponent(PARROT_INTERP, char *tc, SpfInfo *info)>
+
+=cut
+
+*/
+
 static void
-canonicalize_exponent (PARROT_INTERP, ARGMOD(char *tc),
-                                      ARGIN(SpfInfo *info))
+canonicalize_exponent(PARROT_INTERP, ARGMOD(char *tc), ARGIN(SpfInfo *info))
 {
     ASSERT_ARGS(canonicalize_exponent)
 


More information about the parrot-commits mailing list