misc/liblua/lbaselib.c
branchsdl2transition
changeset 11342 ed5a6478e710
parent 10017 de822cd3df3a
--- a/misc/liblua/lbaselib.c	Tue Nov 10 18:16:35 2015 +0100
+++ b/misc/liblua/lbaselib.c	Tue Nov 10 20:43:13 2015 +0100
@@ -479,10 +479,10 @@
 ** =======================================================
 */
 
-#define CO_RUN	0	/* running */
-#define CO_SUS	1	/* suspended */
-#define CO_NOR	2	/* 'normal' (it resumed another coroutine) */
-#define CO_DEAD	3
+#define CO_RUN  0   /* running */
+#define CO_SUS  1   /* suspended */
+#define CO_NOR  2   /* 'normal' (it resumed another coroutine) */
+#define CO_DEAD 3
 
 static const char *const statnames[] =
     {"running", "suspended", "normal", "dead"};