aboutsummaryrefslogtreecommitdiff
path: root/llex.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2007-05-11 14:28:56 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2007-05-11 14:28:56 -0300
commitaa003eba8e64046ebb5631eb9d94c2b556e2bab8 (patch)
treeff826a34eefbfeab932441707ca70d3e21a4211a /llex.h
parentbecf19feeffeb0bf2297e163da4ccc7b4b5e6b5c (diff)
downloadlua-aa003eba8e64046ebb5631eb9d94c2b556e2bab8.tar.gz
lua-aa003eba8e64046ebb5631eb9d94c2b556e2bab8.tar.bz2
lua-aa003eba8e64046ebb5631eb9d94c2b556e2bab8.zip
details
Diffstat (limited to 'llex.h')
-rw-r--r--llex.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/llex.h b/llex.h
index fedcbc9e..0148a17f 100644
--- a/llex.h
+++ b/llex.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: llex.h,v 1.58 2006/03/23 18:23:32 roberto Exp roberto $ 2** $Id: llex.h,v 1.59 2007/02/07 17:49:18 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,7 +68,7 @@ LUAI_FUNC void luaX_setinput (lua_State *L, LexState *ls, ZIO *z,
68 TString *source); 68 TString *source);
69LUAI_FUNC TString *luaX_newstring (LexState *ls, const char *str, size_t l); 69LUAI_FUNC TString *luaX_newstring (LexState *ls, const char *str, size_t l);
70LUAI_FUNC void luaX_next (LexState *ls); 70LUAI_FUNC void luaX_next (LexState *ls);
71LUAI_FUNC void luaX_lookahead (LexState *ls); 71LUAI_FUNC int luaX_lookahead (LexState *ls);
72LUAI_FUNC void luaX_lexerror (LexState *ls, const char *msg, int token); 72LUAI_FUNC void luaX_lexerror (LexState *ls, const char *msg, int token);
73LUAI_FUNC void luaX_syntaxerror (LexState *ls, const char *s); 73LUAI_FUNC void luaX_syntaxerror (LexState *ls, const char *s);
74LUAI_FUNC const char *luaX_token2str (LexState *ls, int token); 74LUAI_FUNC const char *luaX_token2str (LexState *ls, int token);