aboutsummaryrefslogtreecommitdiff
path: root/lutf8lib.c
diff options
context:
space:
mode:
Diffstat (limited to 'lutf8lib.c')
-rw-r--r--lutf8lib.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/lutf8lib.c b/lutf8lib.c
index be016135..df49c901 100644
--- a/lutf8lib.c
+++ b/lutf8lib.c
@@ -215,9 +215,10 @@ static int byteoffset (lua_State *L) {
215 } 215 }
216 lua_pushinteger(L, posi + 1); /* initial position */ 216 lua_pushinteger(L, posi + 1); /* initial position */
217 if ((s[posi] & 0x80) != 0) { /* multi-byte character? */ 217 if ((s[posi] & 0x80) != 0) { /* multi-byte character? */
218 do { 218 if (iscont(s[posi]))
219 posi++; 219 return luaL_error(L, "initial position is a continuation byte");
220 } while (iscontp(s + posi + 1)); /* skip to final byte */ 220 while (iscontp(s + posi + 1))
221 posi++; /* skip to last continuation byte */
221 } 222 }
222 /* else one-byte character: final position is the initial one */ 223 /* else one-byte character: final position is the initial one */
223 lua_pushinteger(L, posi + 1); /* 'posi' now is the final position */ 224 lua_pushinteger(L, posi + 1); /* 'posi' now is the final position */