Author: kjs
Date: Sun Feb 10 05:11:43 2008
New Revision: 25624

Modified:
   trunk/src/exit.c
   trunk/src/extend.c

Log:
[src] align "=" and declarations. remove some spaces where they don't make 
sense.

Modified: trunk/src/exit.c
==============================================================================
--- trunk/src/exit.c    (original)
+++ trunk/src/exit.c    Sun Feb 10 05:11:43 2008
@@ -43,11 +43,11 @@
     /* RT#46403  we might want locking around the list access.   I'm sure this
      * will be the least of the threading issues. */
 
-    handler_node_t* const new_node = mem_allocate_typed(handler_node_t);
+    handler_node_t * const new_node = mem_allocate_typed(handler_node_t);
 
-    new_node->function = function;
-    new_node->arg = arg;
-    new_node->next = interp->exit_handler_list;
+    new_node->function        = function;
+    new_node->arg             = arg;
+    new_node->next            = interp->exit_handler_list;
     interp->exit_handler_list = new_node;
 }
 

Modified: trunk/src/extend.c
==============================================================================
--- trunk/src/extend.c  (original)
+++ trunk/src/extend.c  Sun Feb 10 05:11:43 2008
@@ -213,7 +213,7 @@
 {
     Parrot_Float retval;
     PARROT_CALLIN_START(interp);
-    retval =  VTABLE_get_number(interp, pmc);
+    retval = VTABLE_get_number(interp, pmc);
     PARROT_CALLIN_END(interp);
     return retval;
 }
@@ -235,7 +235,7 @@
 {
     Parrot_Float retval;
     PARROT_CALLIN_START(interp);
-    retval =  VTABLE_get_number_keyed_int(interp, pmc, key);
+    retval = VTABLE_get_number_keyed_int(interp, pmc, key);
     PARROT_CALLIN_END(interp);
     return retval;
 }
@@ -848,7 +848,7 @@
 Parrot_call_sub_ret_float(PARROT_INTERP, Parrot_PMC sub,
                  ARGIN(const char *signature), ...)
 {
-    va_list ap;
+    va_list      ap;
     Parrot_Float result;
 
     PARROT_CALLIN_START(interp);
@@ -880,7 +880,7 @@
 Parrot_call_method(PARROT_INTERP, Parrot_PMC sub, Parrot_PMC obj,
                         Parrot_String method, ARGIN(const char *signature), 
...)
 {
-    void *result;
+    void    *result;
     va_list ap;
 
     PARROT_CALLIN_START(interp);
@@ -908,7 +908,7 @@
         Parrot_PMC obj, Parrot_String method, ARGIN(const char *signature), 
...)
 {
     Parrot_Int result;
-    va_list ap;
+    va_list    ap;
 
     PARROT_CALLIN_START(interp);
     va_start(ap, signature);
@@ -935,7 +935,7 @@
         Parrot_PMC obj, Parrot_String method, ARGIN(const char *signature), 
...)
 {
     Parrot_Float result;
-    va_list ap;
+    va_list      ap;
 
     PARROT_CALLIN_START(interp);
     va_start(ap, signature);

Reply via email to