diff -r bc7b6aa5d67a -r 7030706266df misc/liblua/lbaselib.c --- a/misc/liblua/lbaselib.c Sun Oct 28 15:18:26 2012 +0100 +++ b/misc/liblua/lbaselib.c Fri Dec 06 22:20:53 2019 +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"};