aboutsummaryrefslogtreecommitdiff
path: root/llex.h
diff options
context:
space:
mode:
Diffstat (limited to 'llex.h')
-rw-r--r--llex.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/llex.h b/llex.h
index 67edd491..ed53e2a3 100644
--- a/llex.h
+++ b/llex.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: llex.h,v 1.1 2001/11/29 22:14:34 rieru Exp rieru $ 2** $Id: llex.h,v 1.42 2002/02/08 22:42:41 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*/
@@ -65,8 +65,8 @@ void luaX_init (lua_State *L);
65void luaX_setinput (lua_State *L, LexState *LS, ZIO *z, TString *source); 65void luaX_setinput (lua_State *L, LexState *LS, ZIO *z, TString *source);
66int luaX_lex (LexState *LS, SemInfo *seminfo); 66int luaX_lex (LexState *LS, SemInfo *seminfo);
67void luaX_checklimit (LexState *ls, int val, int limit, const char *msg); 67void luaX_checklimit (LexState *ls, int val, int limit, const char *msg);
68void luaX_error (LexState *ls, const char *s, int token); 68void luaX_syntaxerror (LexState *ls, const char *s);
69void luaX_token2str (int token, char *s); 69const char *luaX_token2str (LexState *ls, int token);
70 70
71 71
72#endif 72#endif