From 827c3736f357e09168fc108e8e740c6425d37d9b Mon Sep 17 00:00:00 2001 From: Li Jin Date: Tue, 2 Nov 2021 11:17:58 +0800 Subject: fix a wrong code generating issue, update builtin Lua. --- src/3rdParty/lua/ldebug.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/3rdParty/lua/ldebug.c') diff --git a/src/3rdParty/lua/ldebug.c b/src/3rdParty/lua/ldebug.c index 433a875..dde4669 100644 --- a/src/3rdParty/lua/ldebug.c +++ b/src/3rdParty/lua/ldebug.c @@ -64,7 +64,7 @@ static int getbaseline (const Proto *f, int pc, int *basepc) { } else { int i = cast_uint(pc) / MAXIWTHABS - 1; /* get an estimate */ - /* estimate must be a lower bond of the correct base */ + /* estimate must be a lower bound of the correct base */ lua_assert(i < 0 || (i < f->sizeabslineinfo && f->abslineinfo[i].pc <= pc)); while (i + 1 < f->sizeabslineinfo && pc >= f->abslineinfo[i + 1].pc) -- cgit v1.2.3-55-g6feb