aboutsummaryrefslogtreecommitdiff
path: root/llex.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2001-11-16 14:29:10 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2001-11-16 14:29:10 -0200
commit39395e12118539d983fdefbbc50d3aac3f53ccad (patch)
treeb34031cfe137496033299663909194def09f8e2f /llex.h
parent26bf2adaceb18877d836174226d2bfdc3f1fc512 (diff)
downloadlua-39395e12118539d983fdefbbc50d3aac3f53ccad.tar.gz
lua-39395e12118539d983fdefbbc50d3aac3f53ccad.tar.bz2
lua-39395e12118539d983fdefbbc50d3aac3f53ccad.zip
`luaX_syntaxerror' does not need to be public
Diffstat (limited to 'llex.h')
-rw-r--r--llex.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/llex.h b/llex.h
index fbfe092d..69242cee 100644
--- a/llex.h
+++ b/llex.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: llex.h,v 1.37 2001/07/22 00:59:36 roberto Exp $ 2** $Id: llex.h,v 1.38 2001/08/31 19:46:07 roberto Exp $
3** Lexical Analyzer 3** Lexical Analyzer
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -65,7 +65,6 @@ 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 l_char *msg); 67void luaX_checklimit (LexState *ls, int val, int limit, const l_char *msg);
68void luaX_syntaxerror (LexState *ls, const l_char *s, const l_char *token);
69void luaX_error (LexState *ls, const l_char *s, int token); 68void luaX_error (LexState *ls, const l_char *s, int token);
70void luaX_token2str (int token, l_char *s); 69void luaX_token2str (int token, l_char *s);
71 70