From c8d91d7f54b91956217a93052f72d4549e32031b Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Sun, 4 Feb 2024 11:42:46 +0100 Subject: [PATCH] backport comment https://github.com/lua/lua/commit/44be021309e1250bcef197537948514506ca8512 --- client/deps/liblua/lopcodes.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/deps/liblua/lopcodes.h b/client/deps/liblua/lopcodes.h index e8d8d019b..00277142d 100644 --- a/client/deps/liblua/lopcodes.h +++ b/client/deps/liblua/lopcodes.h @@ -1,5 +1,5 @@ /* -** $Id: lopcodes.h,v 1.142 2011/07/15 12:50:29 roberto Exp $ +** $Id: lopcodes.h,v 1.142.1.1 2013/04/12 18:48:47 roberto Exp roberto $ ** Opcodes for Lua virtual machine ** See Copyright Notice in lua.h */ @@ -196,7 +196,7 @@ typedef enum { OP_CONCAT,/* A B C R(A) := R(B).. ... ..R(C) */ - OP_JMP,/* A sBx pc+=sBx; if (A) close all upvalues >= R(A) + 1 */ + OP_JMP,/* A sBx pc+=sBx; if (A) close all upvalues >= R(A) - 1 */ OP_EQ,/* A B C if ((RK(B) == RK(C)) ~= A) then pc++ */ OP_LT,/* A B C if ((RK(B) < RK(C)) ~= A) then pc++ */ OP_LE,/* A B C if ((RK(B) <= RK(C)) ~= A) then pc++ */