diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2006-03-23 15:23:32 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2006-03-23 15:23:32 -0300 |
commit | 90df6b7a542f39281181d39674756aa759bfad07 (patch) | |
tree | 375b05a12cb1ea4d98f7bcf84ab5f881334e10eb | |
parent | 0238a0b01e042fad472a60138162209431b8e703 (diff) | |
download | lua-90df6b7a542f39281181d39674756aa759bfad07.tar.gz lua-90df6b7a542f39281181d39674756aa759bfad07.tar.bz2 lua-90df6b7a542f39281181d39674756aa759bfad07.zip |
detail
-rw-r--r-- | llex.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: llex.h,v 1.56 2005/12/07 15:33:27 roberto Exp roberto $ | 2 | ** $Id: llex.h,v 1.57 2005/12/07 15:43:05 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 | */ |
@@ -68,9 +68,9 @@ typedef struct LexState { | |||
68 | 68 | ||
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); |
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 void luaX_lookahead (LexState *ls); | 75 | LUAI_FUNC void luaX_lookahead (LexState *ls); |
76 | LUAI_FUNC void luaX_lexerror (LexState *ls, const char *msg, int token); | 76 | LUAI_FUNC void luaX_lexerror (LexState *ls, const char *msg, int token); |