[svn:parrot] r40945 - in trunk/src: . ops pmc runcore

mikehh at svn.parrot.org mikehh at svn.parrot.org
Thu Sep 3 05:08:37 UTC 2009


Author: mikehh
Date: Thu Sep  3 05:08:36 2009
New Revision: 40945
URL: https://trac.parrot.org/parrot/changeset/40945

Log:
fix codetest failures - tabs in leading whitespace and Trailing space or tab char

Modified:
   trunk/src/hll.c
   trunk/src/ops/set.ops
   trunk/src/pmc/fixedbooleanarray.pmc
   trunk/src/runcore/cores.c

Modified: trunk/src/hll.c
==============================================================================
--- trunk/src/hll.c	Thu Sep  3 04:34:16 2009	(r40944)
+++ trunk/src/hll.c	Thu Sep  3 05:08:36 2009	(r40945)
@@ -53,7 +53,7 @@
 #define END_READ_HLL_INFO(interp, hll_info)
 #define START_WRITE_HLL_INFO(interp, hll_info) \
     do { \
-	if (PObj_is_PMC_shared_TEST(hll_info) && PMC_sync((interp)->HLL_info)) { \
+        if (PObj_is_PMC_shared_TEST(hll_info) && PMC_sync((interp)->HLL_info)) { \
             (hll_info) = (interp)->HLL_info = \
                 Parrot_clone((interp), (interp)->HLL_info); \
             if (PMC_sync((interp)->HLL_info)) \

Modified: trunk/src/ops/set.ops
==============================================================================
--- trunk/src/ops/set.ops	Thu Sep  3 04:34:16 2009	(r40944)
+++ trunk/src/ops/set.ops	Thu Sep  3 05:08:36 2009	(r40945)
@@ -508,9 +508,9 @@
 
         /* don't let the clone's destruction destroy the destination's data */
         PObj_active_destroy_CLEAR(clone);
-	PMC_data(clone)        = NULL;
-	PMC_sync(clone)        = NULL;
-	PMC_metadata(clone)    = NULL;
+        PMC_data(clone)        = NULL;
+        PMC_sync(clone)        = NULL;
+        PMC_metadata(clone)    = NULL;
         PMC_next_for_GC(clone) = NULL;
 
         /* Restore metadata. */

Modified: trunk/src/pmc/fixedbooleanarray.pmc
==============================================================================
--- trunk/src/pmc/fixedbooleanarray.pmc	Thu Sep  3 04:34:16 2009	(r40944)
+++ trunk/src/pmc/fixedbooleanarray.pmc	Thu Sep  3 05:08:36 2009	(r40945)
@@ -556,7 +556,7 @@
 
             bit_array = (unsigned char *)Parrot_str_to_cstring(INTERP, s);
             threshold = Parrot_str_byte_length(interp, s) * BITS_PER_CHAR;
-                    
+
             SET_ATTR_size(INTERP, SELF, size);
             SET_ATTR_resize_threshold(INTERP, SELF, threshold);
             SET_ATTR_bit_array(INTERP, SELF, bit_array);

Modified: trunk/src/runcore/cores.c
==============================================================================
--- trunk/src/runcore/cores.c	Thu Sep  3 04:34:16 2009	(r40944)
+++ trunk/src/runcore/cores.c	Thu Sep  3 05:08:36 2009	(r40945)
@@ -382,7 +382,7 @@
         PARROT_ASSERT(debugger);
 
         /* set the top of the stack so GC can trace it for GC-able pointers
-	 * see trace_system_areas() in src/gc/system.c */
+         * see trace_system_areas() in src/gc/system.c */
         debugger->lo_var_ptr = interp->lo_var_ptr;
 
         pio = Parrot_io_STDERR(debugger);


More information about the parrot-commits mailing list