1
0
mirror of https://github.com/lua/lua synced 2026-06-08 15:34:49 +00:00
- Functions luaK_goiffalse, luaS_hash made private.
- Removed unused macro log2maxs.
This commit is contained in:
Roberto I
2025-10-14 13:50:24 -03:00
parent 30a7b93439
commit 9c66903cc5
5 changed files with 2 additions and 11 deletions
+1 -1
View File
@@ -1181,7 +1181,7 @@ void luaK_goiftrue (FuncState *fs, expdesc *e) {
/*
** Emit code to go through if 'e' is false, jump otherwise.
*/
void luaK_goiffalse (FuncState *fs, expdesc *e) {
static void luaK_goiffalse (FuncState *fs, expdesc *e) {
int pc; /* pc of new jump */
luaK_dischargevars(fs, e);
switch (e->k) {