Author: coke
Date: Mon Mar 31 18:19:40 2008
New Revision: 26680
Modified:
trunk/config/auto/pmc.pm
trunk/src/pmc/resizablepmcarray.pmc
trunk/t/compilers/imcc/syn/regressions.t
Log:
[codingstd]
remove trailing whitespace introduced by myself and other villians.
Modified: trunk/config/auto/pmc.pm
==============================================================================
--- trunk/config/auto/pmc.pm (original)
+++ trunk/config/auto/pmc.pm Mon Mar 31 18:19:40 2008
@@ -128,7 +128,7 @@
} elsif ($include =~ m/^pmc_|\.str$/) { # local pmc header
$include = "src/pmc/" . $include;
} # else it's probably a system header, don't depend on it.
- push @retval, $include;
+ push @retval, $include;
}
return join(' ', @retval);
Modified: trunk/src/pmc/resizablepmcarray.pmc
==============================================================================
--- trunk/src/pmc/resizablepmcarray.pmc (original)
+++ trunk/src/pmc/resizablepmcarray.pmc Mon Mar 31 18:19:40 2008
@@ -731,7 +731,7 @@
=item METHOD PMC* pop()
-Method forms to remove and return a PMC from the beginning or
+Method forms to remove and return a PMC from the beginning or
end of the array.
=cut
Modified: trunk/t/compilers/imcc/syn/regressions.t
==============================================================================
--- trunk/t/compilers/imcc/syn/regressions.t (original)
+++ trunk/t/compilers/imcc/syn/regressions.t Mon Mar 31 18:19:40 2008
@@ -18,9 +18,9 @@
pir_output_is( <<'CODE', <<'OUT', 'cannot constant fold div by 0');
.sub fold_by_zero
- push_eh ok
+ #push_eh ok
$I1 = 1/0
- pop_eh
+ #pop_eh
ok:
say "ok"
.end