Author: paultcochrane
Date: Sat Mar 31 05:42:50 2007
New Revision: 17889

Modified:
   trunk/languages/tcl/src/pmc/tcllist.pmc

Log:
[tcl] Fixed parentheses as per coding standards
Patch courtesy of Shawn M Moore <sartak at gmail dot com>

Modified: trunk/languages/tcl/src/pmc/tcllist.pmc
==============================================================================
--- trunk/languages/tcl/src/pmc/tcllist.pmc     (original)
+++ trunk/languages/tcl/src/pmc/tcllist.pmc     Sat Mar 31 05:42:50 2007
@@ -117,7 +117,7 @@
 
             size = VTABLE_elements(INTERP,other);
             DYNSELF.set_integer_native(size);
-            for(i = 0; i < size; i++) {
+            for (i = 0; i < size; i++) {
                 PMC* elem = VTABLE_get_pmc_keyed_int(INTERP, other, i);
                 DYNSELF.set_pmc_keyed_int(i, elem);
             }

Reply via email to