lua

A copy of the Lua development repository
Log | Files | Refs | README

commit 7bd1e53753de7176eb0b23f2bf19ad2235dec826
parent b98d41db99969f6336c32cb67274093b9a548d39
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date:   Fri,  4 Oct 2019 16:16:37 -0300

Fixed a warning and other minor issues

Fixed some minor issues from the feedback for 5.4-beta rc1.

Diffstat:
Mlcode.c | 4++--
Mlcorolib.c | 3++-
Mldblib.c | 2+-
Mlgc.c | 2+-
Mloadlib.c | 2+-
Mlparser.c | 4++--
6 files changed, 9 insertions(+), 8 deletions(-)

diff --git a/lcode.c b/lcode.c @@ -1650,8 +1650,8 @@ void luaK_posfix (FuncState *fs, BinOpr opr, case OPR_SUB: { if (finishbinexpneg(fs, e1, e2, OP_ADDI, line, TM_SUB)) break; /* coded as (r1 + -I) */ - /* ELSE *//* FALLTHROUGH */ - } + /* ELSE */ + } /* FALLTHROUGH */ case OPR_DIV: case OPR_IDIV: case OPR_MOD: case OPR_POW: { codearith(fs, opr, e1, e2, 0, line); break; diff --git a/lcorolib.c b/lcorolib.c @@ -116,7 +116,8 @@ static int luaB_yield (lua_State *L) { #define COS_NORM 3 -static const char *statname[] = {"running", "dead", "suspended", "normal"}; +static const char *const statname[] = + {"running", "dead", "suspended", "normal"}; static int auxstatus (lua_State *L, lua_State *co) { diff --git a/ldblib.c b/ldblib.c @@ -24,7 +24,7 @@ ** The hook table at registry[HOOKKEY] maps threads to their current ** hook function. */ -static const char* HOOKKEY = "_HOOKKEY"; +static const char *const HOOKKEY = "_HOOKKEY"; /* diff --git a/lgc.c b/lgc.c @@ -998,7 +998,7 @@ static void sweep2old (lua_State *L, GCObject **p) { */ static GCObject **sweepgen (lua_State *L, global_State *g, GCObject **p, GCObject *limit) { - static lu_byte nextage[] = { + static const lu_byte nextage[] = { G_SURVIVAL, /* from G_NEW */ G_OLD1, /* from G_SURVIVAL */ G_OLD1, /* from G_OLD0 */ diff --git a/loadlib.c b/loadlib.c @@ -59,7 +59,7 @@ ** key for table in the registry that keeps handles ** for all loaded C libraries */ -static const char *CLIBS = "_CLIBS"; +static const char *const CLIBS = "_CLIBS"; #define LIB_FAIL "open" diff --git a/lparser.c b/lparser.c @@ -1523,8 +1523,8 @@ static void fixforjump (FuncState *fs, int pc, int dest, int back) { */ static void forbody (LexState *ls, int base, int line, int nvars, int isgen) { /* forbody -> DO block */ - static OpCode forprep[2] = {OP_FORPREP, OP_TFORPREP}; - static OpCode forloop[2] = {OP_FORLOOP, OP_TFORLOOP}; + static const OpCode forprep[2] = {OP_FORPREP, OP_TFORPREP}; + static const OpCode forloop[2] = {OP_FORLOOP, OP_TFORLOOP}; BlockCnt bl; FuncState *fs = ls->fs; int prep, endfor;