aboutsummaryrefslogtreecommitdiff
path: root/lutf8lib.c
diff options
context:
space:
mode:
authorPhilipp Janda <siffiejoe@gmx.net>2017-08-27 15:50:20 +0200
committerPhilipp Janda <siffiejoe@gmx.net>2017-08-27 15:50:20 +0200
commit818e129043c73930aca0d223db62837ee921bb2a (patch)
tree1978e1ff1d971dc6d925920588bfb6a7859953a9 /lutf8lib.c
parentaeb072066f799c87527c81b19919dfd3b55bc373 (diff)
downloadlua-compat-5.3-818e129043c73930aca0d223db62837ee921bb2a.tar.gz
lua-compat-5.3-818e129043c73930aca0d223db62837ee921bb2a.tar.bz2
lua-compat-5.3-818e129043c73930aca0d223db62837ee921bb2a.zip
Update backports to Lua 5.3.4.
Diffstat (limited to 'lutf8lib.c')
-rw-r--r--lutf8lib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lutf8lib.c b/lutf8lib.c
index 9042582..de9e3dc 100644
--- a/lutf8lib.c
+++ b/lutf8lib.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lutf8lib.c,v 1.15 2015/03/28 19:16:55 roberto Exp $ 2** $Id: lutf8lib.c,v 1.16 2016/12/22 13:08:50 roberto Exp $
3** Standard library for UTF-8 manipulation 3** Standard library for UTF-8 manipulation
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -194,7 +194,7 @@ static int byteoffset (lua_State *L) {
194 lua_pushinteger(L, posi + 1); 194 lua_pushinteger(L, posi + 1);
195 else /* no such character */ 195 else /* no such character */
196 lua_pushnil(L); 196 lua_pushnil(L);
197 return 1; 197 return 1;
198} 198}
199 199
200 200