Remove tabs from c code.
Florian Ragwitz [Tue, 10 Mar 2009 03:33:39 +0000 (04:33 +0100)]
mop.c
mop.h
xs/MOP.xs

diff --git a/mop.c b/mop.c
index 425cd48..9945d18 100644 (file)
--- a/mop.c
+++ b/mop.c
@@ -3,10 +3,10 @@
 void
 mop_call_xs (pTHX_ void (*subaddr) (pTHX_ CV *), CV *cv, SV **mark)
 {
-       dSP;
-       PUSHMARK(mark);
-       (*subaddr)(aTHX_ cv);
-       PUTBACK;
+    dSP;
+    PUSHMARK(mark);
+    (*subaddr)(aTHX_ cv);
+    PUTBACK;
 }
 
 #if PERL_VERSION >= 10
diff --git a/mop.h b/mop.h
index 35a7292..7373ead 100644 (file)
--- a/mop.h
+++ b/mop.h
 #include "ppport.h"
 
 #define MOP_CALL_BOOT(name) \
-       { \
-               EXTERN_C XS(name); \
-               mop_call_xs(aTHX_ name, cv, mark); \
-       }
+    { \
+        EXTERN_C XS(name); \
+        mop_call_xs(aTHX_ name, cv, mark); \
+    }
 
 void mop_call_xs (pTHX_ void (*subaddr) (pTHX_ CV *), CV *cv, SV **mark);
 
index 545933e..f0132e9 100644 (file)
--- a/xs/MOP.xs
+++ b/xs/MOP.xs
@@ -39,10 +39,10 @@ BOOT:
     wrap                 = newSVpvs("wrap");
     associated_metaclass = newSVpvs("associated_metaclass");
 
-       MOP_CALL_BOOT (boot_Class__MOP__Package);
-       MOP_CALL_BOOT (boot_Class__MOP__Class);
-       MOP_CALL_BOOT (boot_Class__MOP__Attribute);
-       MOP_CALL_BOOT (boot_Class__MOP__Method);
+    MOP_CALL_BOOT (boot_Class__MOP__Package);
+    MOP_CALL_BOOT (boot_Class__MOP__Class);
+    MOP_CALL_BOOT (boot_Class__MOP__Attribute);
+    MOP_CALL_BOOT (boot_Class__MOP__Method);
 
 # use prototype here to be compatible with get_code_info from Sub::Identify
 void