misc/liblua/lbaselib.c
changeset 10017 de822cd3df3a
parent 2812 0a24853de796
--- a/misc/liblua/lbaselib.c	Tue Jan 21 22:38:13 2014 +0100
+++ b/misc/liblua/lbaselib.c	Tue Jan 21 22:43:06 2014 +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"};