[gimp] De-tabified file.



commit bacce394b52d814418d62d6e0cad0ee1d073f829
Author: Kevin Cozens <kcozens cvs gnome org>
Date:   Tue Aug 18 01:10:42 2009 -0400

    De-tabified file.

 plug-ins/script-fu/tinyscheme/scheme.c |   24 ++++++++++++------------
 1 files changed, 12 insertions(+), 12 deletions(-)
---
diff --git a/plug-ins/script-fu/tinyscheme/scheme.c b/plug-ins/script-fu/tinyscheme/scheme.c
index a41c205..5ea467c 100644
--- a/plug-ins/script-fu/tinyscheme/scheme.c
+++ b/plug-ins/script-fu/tinyscheme/scheme.c
@@ -628,7 +628,7 @@ static int alloc_cellseg(scheme *sc, int n) {
           i = ++sc->last_cell_seg ;
           sc->alloc_seg[i] = cp;
           /* adjust in TYPE_BITS-bit boundary */
-          if (((unsigned long) cp) % adj != 0) {
+          if(((unsigned long)cp)%adj!=0) {
             cp=(char*)(adj*((unsigned long)cp/adj+1));
           }
         /* insert new segment in address order */
@@ -2791,19 +2791,19 @@ static pointer opexe_0(scheme *sc, enum scheme_opcodes op) {
           sc->code = sc->value;
           s_goto(sc,OP_EVAL);
 
-#if 1	  
+#if 1
      case OP_LAMBDA:     /* lambda */
-	  /* If the hook is defined, apply it to sc->code, otherwise
-	     set sc->value fall thru */
-	  {
-	       pointer f=find_slot_in_env(sc,sc->envir,sc->COMPILE_HOOK,1);
+          /* If the hook is defined, apply it to sc->code, otherwise
+             set sc->value fall thru */
+          {
+               pointer f=find_slot_in_env(sc,sc->envir,sc->COMPILE_HOOK,1);
                if(f==sc->NIL) {
-		    sc->value = sc->code;
+                    sc->value = sc->code;
                     /* Fallthru */
                } else {
-		    s_save(sc,OP_LAMBDA1,sc->args,sc->code);
-		    sc->args=cons(sc,sc->code,sc->NIL);
-		    sc->code=slot_value_in_env(f);
+                    s_save(sc,OP_LAMBDA1,sc->args,sc->code);
+                    sc->args=cons(sc,sc->code,sc->NIL);
+                    sc->code=slot_value_in_env(f);
                     s_goto(sc,OP_APPLY);
                }
           }
@@ -2814,8 +2814,8 @@ static pointer opexe_0(scheme *sc, enum scheme_opcodes op) {
 #else
      case OP_LAMBDA:     /* lambda */
           s_return(sc,mk_closure(sc, sc->code, sc->envir));
-	  
-#endif	  
+
+#endif
 
      case OP_MKCLOSURE: /* make-closure */
        x=car(sc->args);



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]