[svn:parrot] r48618 - trunk/src/call

mikehh at svn.parrot.org mikehh at svn.parrot.org
Tue Aug 24 11:37:11 UTC 2010


Author: mikehh
Date: Tue Aug 24 11:37:10 2010
New Revision: 48618
URL: https://trac.parrot.org/parrot/changeset/48618

Log:
fix codetest failure - parentheses should not have space immediately
after the opening parenthesis nor immediately before the closing parenthesis

Modified:
   trunk/src/call/args.c

Modified: trunk/src/call/args.c
==============================================================================
--- trunk/src/call/args.c	Tue Aug 24 07:35:55 2010	(r48617)
+++ trunk/src/call/args.c	Tue Aug 24 11:37:10 2010	(r48618)
@@ -493,8 +493,7 @@
         parrot_hash_iterate(hash,
             VTABLE_set_pmc_keyed_str(interp, call_object,
                 (STRING *)_bucket->key,
-                hash_value_to_pmc(interp, hash, _bucket->value));
-        )
+                hash_value_to_pmc(interp, hash, _bucket->value));)
     }
     else {
         Parrot_ex_throw_from_c_args(interp, NULL, EXCEPTION_INVALID_OPERATION,


More information about the parrot-commits mailing list