summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2006-03-23 15:23:32 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2006-03-23 15:23:32 -0300
commit90df6b7a542f39281181d39674756aa759bfad07 (patch)
tree375b05a12cb1ea4d98f7bcf84ab5f881334e10eb
parent0238a0b01e042fad472a60138162209431b8e703 (diff)
downloadlua-github-90df6b7a542f39281181d39674756aa759bfad07.tar.gz
detail
-rw-r--r--llex.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/llex.h b/llex.h
index 4e1ac798..cbe88403 100644
--- a/llex.h
+++ b/llex.h
@@ -1,5 +1,5 @@
/*
-** $Id: llex.h,v 1.56 2005/12/07 15:33:27 roberto Exp roberto $
+** $Id: llex.h,v 1.57 2005/12/07 15:43:05 roberto Exp roberto $
** Lexical Analyzer
** See Copyright Notice in lua.h
*/
@@ -68,9 +68,9 @@ typedef struct LexState {
LUAI_FUNC void luaX_init (lua_State *L);
-LUAI_FUNC void luaX_setinput (lua_State *L, LexState *LS, ZIO *z,
+LUAI_FUNC void luaX_setinput (lua_State *L, LexState *ls, ZIO *z,
TString *source);
-LUAI_FUNC TString *luaX_newstring (LexState *LS, const char *str, size_t l);
+LUAI_FUNC TString *luaX_newstring (LexState *ls, const char *str, size_t l);
LUAI_FUNC void luaX_next (LexState *ls);
LUAI_FUNC void luaX_lookahead (LexState *ls);
LUAI_FUNC void luaX_lexerror (LexState *ls, const char *msg, int token);