diff options
Diffstat (limited to 'lua.stx')
-rw-r--r-- | lua.stx | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,6 +1,6 @@ | |||
1 | %{ | 1 | %{ |
2 | /* | 2 | /* |
3 | ** $Id: lua.stx,v 1.17 1997/11/07 15:09:49 roberto Exp roberto $ | 3 | ** $Id: lua.stx,v 1.18 1997/11/19 17:29:23 roberto Exp roberto $ |
4 | ** Syntax analizer and code generator | 4 | ** Syntax analizer and code generator |
5 | ** See Copyright Notice in lua.h | 5 | ** See Copyright Notice in lua.h |
6 | */ | 6 | */ |
@@ -613,7 +613,7 @@ TProtoFunc *luaY_parser (ZIO *z, char *chunkname) | |||
613 | L->lexstate = &lexstate; | 613 | L->lexstate = &lexstate; |
614 | luaX_setinput(z); | 614 | luaX_setinput(z); |
615 | init_state(luaS_new(chunkname)); | 615 | init_state(luaS_new(chunkname)); |
616 | if (luaY_parse ()) lua_error("parse error"); | 616 | if (luaY_parse()) lua_error("parse error"); |
617 | return close_func(); | 617 | return close_func(); |
618 | } | 618 | } |
619 | 619 | ||