Turn 8 spaces to tab across the project

According to the current code style of the project
diff --git a/src/hb-graphite2.cc b/src/hb-graphite2.cc
index 40ac906..f0f2f8c 100644
--- a/src/hb-graphite2.cc
+++ b/src/hb-graphite2.cc
@@ -340,14 +340,14 @@
       c->num_glyphs = 0;
       if (HB_DIRECTION_IS_BACKWARD(buffer->props.direction))
       {
-        c->advance = curradv - gr_slot_origin_X(is) * xscale;
-        curradv -= c->advance;
+	c->advance = curradv - gr_slot_origin_X(is) * xscale;
+	curradv -= c->advance;
       }
       else
       {
-        c->advance = 0;
-        clusters[ci].advance += gr_slot_origin_X(is) * xscale - curradv;
-        curradv += clusters[ci].advance;
+	c->advance = 0;
+	clusters[ci].advance += gr_slot_origin_X(is) * xscale - curradv;
+	curradv += clusters[ci].advance;
       }
       ci++;
     }