aboutsummaryrefslogtreecommitdiff
path: root/llex.h
diff options
context:
space:
mode:
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 2c1ab559..1125e836 100644
--- a/llex.h
+++ b/llex.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: llex.h,v 1.70 2011/05/03 15:51:16 roberto Exp roberto $ 2** $Id: llex.h,v 1.71 2011/06/20 16:52:48 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,7 @@ LUAI_FUNC void luaX_setinput (lua_State *L, LexState *ls, ZIO *z,
71LUAI_FUNC TString *luaX_newstring (LexState *ls, const char *str, size_t l); 71LUAI_FUNC TString *luaX_newstring (LexState *ls, const char *str, size_t l);
72LUAI_FUNC void luaX_next (LexState *ls); 72LUAI_FUNC void luaX_next (LexState *ls);
73LUAI_FUNC int luaX_lookahead (LexState *ls); 73LUAI_FUNC int luaX_lookahead (LexState *ls);
74LUAI_FUNC void luaX_syntaxerror (LexState *ls, const char *s); 74LUAI_FUNC l_noret luaX_syntaxerror (LexState *ls, const char *s);
75LUAI_FUNC const char *luaX_token2str (LexState *ls, int token); 75LUAI_FUNC const char *luaX_token2str (LexState *ls, int token);
76 76
77 77