aboutsummaryrefslogtreecommitdiff
path: root/llex.h
diff options
context:
space:
mode:
Diffstat (limited to 'llex.h')
-rw-r--r--llex.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/llex.h b/llex.h
index 2a7a3664..4e1ac798 100644
--- a/llex.h
+++ b/llex.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: llex.h,v 1.55 2005/06/06 13:30:25 roberto Exp roberto $ 2** $Id: llex.h,v 1.56 2005/12/07 15:33:27 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*/
@@ -71,7 +71,8 @@ LUAI_FUNC void luaX_init (lua_State *L);
71LUAI_FUNC void luaX_setinput (lua_State *L, LexState *LS, ZIO *z, 71LUAI_FUNC void luaX_setinput (lua_State *L, LexState *LS, ZIO *z,
72 TString *source); 72 TString *source);
73LUAI_FUNC TString *luaX_newstring (LexState *LS, const char *str, size_t l); 73LUAI_FUNC TString *luaX_newstring (LexState *LS, const char *str, size_t l);
74LUAI_FUNC int luaX_lex (LexState *LS, SemInfo *seminfo); 74LUAI_FUNC void luaX_next (LexState *ls);
75LUAI_FUNC void luaX_lookahead (LexState *ls);
75LUAI_FUNC void luaX_lexerror (LexState *ls, const char *msg, int token); 76LUAI_FUNC void luaX_lexerror (LexState *ls, const char *msg, int token);
76LUAI_FUNC void luaX_syntaxerror (LexState *ls, const char *s); 77LUAI_FUNC void luaX_syntaxerror (LexState *ls, const char *s);
77LUAI_FUNC const char *luaX_token2str (LexState *ls, int token); 78LUAI_FUNC const char *luaX_token2str (LexState *ls, int token);