diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2005-04-29 09:43:47 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2005-04-29 09:43:47 -0300 |
commit | c3939f5786c434b68776dca507ba052046d17781 (patch) | |
tree | 6c245047c2017ef7f3bf7919fa030ccbac176f32 | |
parent | bcc4089a7d49e06b115363a7a9ea3b07a85f2b71 (diff) | |
download | lua-c3939f5786c434b68776dca507ba052046d17781.tar.gz lua-c3939f5786c434b68776dca507ba052046d17781.tar.bz2 lua-c3939f5786c434b68776dca507ba052046d17781.zip |
comment
-rw-r--r-- | lparser.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lparser.c,v 2.20 2005/04/07 13:09:07 roberto Exp roberto $ | 2 | ** $Id: lparser.c,v 2.21 2005/04/27 18:53:53 roberto Exp roberto $ |
3 | ** Lua Parser | 3 | ** Lua Parser |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -1289,7 +1289,7 @@ static void retstat (LexState *ls) { | |||
1289 | 1289 | ||
1290 | 1290 | ||
1291 | static void breakstat (LexState *ls) { | 1291 | static void breakstat (LexState *ls) { |
1292 | /* stat -> BREAK [NAME] */ | 1292 | /* stat -> BREAK */ |
1293 | FuncState *fs = ls->fs; | 1293 | FuncState *fs = ls->fs; |
1294 | BlockCnt *bl = fs->bl; | 1294 | BlockCnt *bl = fs->bl; |
1295 | int upval = 0; | 1295 | int upval = 0; |