From 9bc12f5f97f6774e6eeeb3ef577e026cc8d03357 Mon Sep 17 00:00:00 2001 From: Kae <80987908+Novaenia@users.noreply.github.com> Date: Sun, 5 Jan 2025 15:16:15 +1100 Subject: Lua 5.3.6 --- source/extern/lua/lutf8lib.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source/extern/lua/lutf8lib.c') diff --git a/source/extern/lua/lutf8lib.c b/source/extern/lua/lutf8lib.c index 9042582..10bd238 100644 --- a/source/extern/lua/lutf8lib.c +++ b/source/extern/lua/lutf8lib.c @@ -1,5 +1,5 @@ /* -** $Id: lutf8lib.c,v 1.15 2015/03/28 19:16:55 roberto Exp $ +** $Id: lutf8lib.c,v 1.16.1.1 2017/04/19 17:29:57 roberto Exp $ ** Standard library for UTF-8 manipulation ** See Copyright Notice in lua.h */ @@ -171,7 +171,7 @@ static int byteoffset (lua_State *L) { } else { if (iscont(s + posi)) - luaL_error(L, "initial position is a continuation byte"); + return luaL_error(L, "initial position is a continuation byte"); if (n < 0) { while (n < 0 && posi > 0) { /* move back */ do { /* find beginning of previous character */ @@ -194,7 +194,7 @@ static int byteoffset (lua_State *L) { lua_pushinteger(L, posi + 1); else /* no such character */ lua_pushnil(L); - return 1; + return 1; } -- cgit v1.2.3