summaryrefslogtreecommitdiffstats
path: root/module/lua/llex.c
diff options
context:
space:
mode:
Diffstat (limited to 'module/lua/llex.c')
-rw-r--r--module/lua/llex.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/module/lua/llex.c b/module/lua/llex.c
index e98d74320..8760155d0 100644
--- a/module/lua/llex.c
+++ b/module/lua/llex.c
@@ -474,6 +474,7 @@ static int llex (LexState *ls, SemInfo *seminfo) {
else if (!lisdigit(ls->current)) return '.';
/* else go through */
}
+ /* FALLTHROUGH */
case '0': case '1': case '2': case '3': case '4':
case '5': case '6': case '7': case '8': case '9': {
read_numeral(ls, seminfo);