summaryrefslogtreecommitdiff
path: root/src/ltable.c
diff options
context:
space:
mode:
authorLua Team <team@lua.org>2015-06-17 12:00:00 +0000
committerrepogen <>2015-06-17 12:00:00 +0000
commit570b787fcb304dd3cc3472452808abe0d6e9b915 (patch)
treecf4b9fc29c6e3e770f0551c33ec251440c60fb0a /src/ltable.c
parent6ddf2b3ca86471f90439976967c9e608582f0d0b (diff)
downloadlua-github-5.3.1.tar.gz
Diffstat (limited to 'src/ltable.c')
-rw-r--r--src/ltable.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ltable.c b/src/ltable.c
index 94244e2c..04f2a347 100644
--- a/src/ltable.c
+++ b/src/ltable.c
@@ -1,5 +1,5 @@
/*
-** $Id: ltable.c,v 2.110 2015/05/20 16:22:30 roberto Exp $
+** $Id: ltable.c,v 2.111 2015/06/09 14:21:13 roberto Exp $
** Lua tables (hash)
** See Copyright Notice in lua.h
*/
@@ -551,8 +551,8 @@ const TValue *luaH_get (Table *t, const TValue *key) {
lua_Integer k;
if (luaV_tointeger(key, &k, 0)) /* index is int? */
return luaH_getint(t, k); /* use specialized version */
- /* else *//* FALLTHROUGH */
- }
+ /* else... */
+ } /* FALLTHROUGH */
default: {
Node *n = mainposition(t, key);
for (;;) { /* check whether 'key' is somewhere in the chain */