aboutsummaryrefslogtreecommitdiff
path: root/lparser.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2011-02-23 10:13:10 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2011-02-23 10:13:10 -0300
commit7482e8f914fbf198af02c2970cf0aadd80740f92 (patch)
tree56578e184ca11939edc00272d63bc801e2b67a5a /lparser.h
parent03b769053a4288742fb4739fa47508ec735e2036 (diff)
downloadlua-7482e8f914fbf198af02c2970cf0aadd80740f92.tar.gz
lua-7482e8f914fbf198af02c2970cf0aadd80740f92.tar.bz2
lua-7482e8f914fbf198af02c2970cf0aadd80740f92.zip
no need of lookahead in Zio
Diffstat (limited to 'lparser.h')
-rw-r--r--lparser.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lparser.h b/lparser.h
index 5626d100..de37e125 100644
--- a/lparser.h
+++ b/lparser.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lparser.h,v 1.66 2011/02/04 17:34:43 roberto Exp roberto $ 2** $Id: lparser.h,v 1.67 2011/02/07 17:14:50 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*/
@@ -114,7 +114,7 @@ typedef struct FuncState {
114 114
115 115
116LUAI_FUNC Proto *luaY_parser (lua_State *L, ZIO *z, Mbuffer *buff, 116LUAI_FUNC Proto *luaY_parser (lua_State *L, ZIO *z, Mbuffer *buff,
117 Dyndata *dyd, const char *name); 117 Dyndata *dyd, const char *name, int firstchar);
118 118
119 119
120#endif 120#endif