summaryrefslogtreecommitdiff
path: root/lstrlib.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2016-05-13 16:09:46 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2016-05-13 16:09:46 -0300
commitfbd8614bdb92199520bef10a8e020662bc94222b (patch)
tree8d60c3b958e4314bbaaf2c7b9cdb3e12f1269ad7 /lstrlib.c
parentf3b52a606169b09b32ed172f95276c6735f5ce54 (diff)
downloadlua-github-fbd8614bdb92199520bef10a8e020662bc94222b.tar.gz
comment (FALLTHROUGH)
Diffstat (limited to 'lstrlib.c')
-rw-r--r--lstrlib.c6
1 files changed, 3 insertions, 3 deletions
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);