diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2011-02-23 10:13:10 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2011-02-23 10:13:10 -0300 |
commit | 7482e8f914fbf198af02c2970cf0aadd80740f92 (patch) | |
tree | 56578e184ca11939edc00272d63bc801e2b67a5a /llex.h | |
parent | 03b769053a4288742fb4739fa47508ec735e2036 (diff) | |
download | lua-7482e8f914fbf198af02c2970cf0aadd80740f92.tar.gz lua-7482e8f914fbf198af02c2970cf0aadd80740f92.tar.bz2 lua-7482e8f914fbf198af02c2970cf0aadd80740f92.zip |
no need of lookahead in Zio
Diffstat (limited to 'llex.h')
-rw-r--r-- | llex.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: llex.h,v 1.67 2011/02/04 17:34:43 roberto Exp roberto $ | 2 | ** $Id: llex.h,v 1.68 2011/02/07 17:14:50 roberto Exp roberto $ |
3 | ** Lexical Analyzer | 3 | ** Lexical Analyzer |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -69,7 +69,7 @@ typedef struct LexState { | |||
69 | 69 | ||
70 | LUAI_FUNC void luaX_init (lua_State *L); | 70 | LUAI_FUNC void luaX_init (lua_State *L); |
71 | LUAI_FUNC void luaX_setinput (lua_State *L, LexState *ls, ZIO *z, | 71 | LUAI_FUNC void luaX_setinput (lua_State *L, LexState *ls, ZIO *z, |
72 | TString *source); | 72 | TString *source, int firstchar); |
73 | LUAI_FUNC TString *luaX_newstring (LexState *ls, const char *str, size_t l); | 73 | LUAI_FUNC TString *luaX_newstring (LexState *ls, const char *str, size_t l); |
74 | LUAI_FUNC void luaX_next (LexState *ls); | 74 | LUAI_FUNC void luaX_next (LexState *ls); |
75 | LUAI_FUNC int luaX_lookahead (LexState *ls); | 75 | LUAI_FUNC int luaX_lookahead (LexState *ls); |