aboutsummaryrefslogtreecommitdiff
path: root/lparser.c
diff options
context:
space:
mode:
Diffstat (limited to 'lparser.c')
-rw-r--r--lparser.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/lparser.c b/lparser.c
index 242bb001..27c8a927 100644
--- a/lparser.c
+++ b/lparser.c
@@ -1997,6 +1997,7 @@ static void statement (LexState *ls) {
1997 gotostat(ls, line); 1997 gotostat(ls, line);
1998 break; 1998 break;
1999 } 1999 }
2000#if defined(LUA_COMPAT_GLOBAL)
2000 case TK_NAME: { 2001 case TK_NAME: {
2001 /* compatibility code to parse global keyword when "global" 2002 /* compatibility code to parse global keyword when "global"
2002 is not reserved */ 2003 is not reserved */
@@ -2008,7 +2009,9 @@ static void statement (LexState *ls) {
2008 break; 2009 break;
2009 } 2010 }
2010 } /* else... */ 2011 } /* else... */
2011 } /* FALLTHROUGH */ 2012 }
2013#endif
2014 /* FALLTHROUGH */
2012 default: { /* stat -> func | assignment */ 2015 default: { /* stat -> func | assignment */
2013 exprstat(ls); 2016 exprstat(ls);
2014 break; 2017 break;