[svn:parrot] r46236 - in trunk: compilers/imcc src/pmc
mikehh at svn.parrot.org
mikehh at svn.parrot.org
Mon May 3 14:59:56 UTC 2010
Author: mikehh
Date: Mon May 3 14:59:56 2010
New Revision: 46236
URL: https://trac.parrot.org/parrot/changeset/46236
Log:
fix codetest failure - parentheses should not have space immediately after the opening parenthesis nor immediately before the closing parenthesis
Modified:
trunk/compilers/imcc/pbc.c
trunk/src/pmc/imageio.pmc
Modified: trunk/compilers/imcc/pbc.c
==============================================================================
--- trunk/compilers/imcc/pbc.c Mon May 3 14:39:34 2010 (r46235)
+++ trunk/compilers/imcc/pbc.c Mon May 3 14:59:56 2010 (r46236)
@@ -994,8 +994,8 @@
&& Parrot_charset_number_of_str(interp, s)
== Parrot_charset_number_of_str(interp, sc)
&& Parrot_encoding_number_of_str(interp, s)
- == Parrot_encoding_number_of_str(interp, sc)
- ) {
+ == Parrot_encoding_number_of_str(interp, sc))
+ {
return i;
}
}
Modified: trunk/src/pmc/imageio.pmc
==============================================================================
--- trunk/src/pmc/imageio.pmc Mon May 3 14:39:34 2010 (r46235)
+++ trunk/src/pmc/imageio.pmc Mon May 3 14:59:56 2010 (r46236)
@@ -546,8 +546,8 @@
&& Parrot_charset_number_of_str(interp, v)
== Parrot_charset_number_of_str(interp, sc)
&& Parrot_encoding_number_of_str(interp, v)
- == Parrot_encoding_number_of_str(interp, sc)
- ) {
+ == Parrot_encoding_number_of_str(interp, sc))
+ {
STATICSELF.push_integer(i);
return;
}
More information about the parrot-commits
mailing list