diff -r 4feced261c68 -r de822cd3df3a misc/liblua/lbaselib.c --- 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"};