aboutsummaryrefslogtreecommitdiff
path: root/llex.h
diff options
context:
space:
mode:
Diffstat (limited to 'llex.h')
-rw-r--r--llex.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/llex.h b/llex.h
index 00c73c77..a97def0a 100644
--- a/llex.h
+++ b/llex.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: llex.h,v 1.46 2002/11/22 16:35:20 roberto Exp roberto $ 2** $Id: llex.h,v 1.47 2003/02/28 17:19:47 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,6 +65,7 @@ typedef struct LexState {
65 65
66void luaX_init (lua_State *L); 66void luaX_init (lua_State *L);
67void luaX_setinput (lua_State *L, LexState *LS, ZIO *z, TString *source); 67void luaX_setinput (lua_State *L, LexState *LS, ZIO *z, TString *source);
68TString *luaX_newstring (LexState *LS, const char *str, size_t l);
68int luaX_lex (LexState *LS, SemInfo *seminfo); 69int luaX_lex (LexState *LS, SemInfo *seminfo);
69void luaX_checklimit (LexState *ls, int val, int limit, const char *msg); 70void luaX_checklimit (LexState *ls, int val, int limit, const char *msg);
70void luaX_syntaxerror (LexState *ls, const char *s); 71void luaX_syntaxerror (LexState *ls, const char *s);