From fbd8614bdb92199520bef10a8e020662bc94222b Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Fri, 13 May 2016 16:09:46 -0300 Subject: comment (FALLTHROUGH) --- lstrlib.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lstrlib.c') diff --git a/lstrlib.c b/lstrlib.c index 8a99a011..06f688a9 100644 --- a/lstrlib.c +++ b/lstrlib.c @@ -1,5 +1,5 @@ /* -** $Id: lstrlib.c,v 1.247 2016/04/22 16:36:30 roberto Exp roberto $ +** $Id: lstrlib.c,v 1.248 2016/05/02 13:58:01 roberto Exp roberto $ ** Standard library for string operations and pattern-matching ** See Copyright Notice in lua.h */ @@ -958,8 +958,8 @@ static void addliteral (lua_State *L, luaL_Buffer *b, int arg) { addliteralnum(L, b, lua_tonumber(L, arg)); break; } - /* else integers; write in "native" format *//* FALLTHROUGH */ - } + /* else integers; write in "native" format */ + } /* FALLTHROUGH */ case LUA_TNIL: case LUA_TBOOLEAN: { luaL_tolstring(L, arg, NULL); luaL_addvalue(b); -- cgit v1.2.3-55-g6feb