aboutsummaryrefslogtreecommitdiff
path: root/llex.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1998-07-24 15:02:38 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1998-07-24 15:02:38 -0300
commite1a127245d3d977945819240a2df90ceb8ae516f (patch)
tree8be4a6f04d317bf1c92c40e2ea3fda7dde80b9c7 /llex.h
parentafb5ef72e1974ba6d0fc336637c71f3ee8fb03a2 (diff)
downloadlua-e1a127245d3d977945819240a2df90ceb8ae516f.tar.gz
lua-e1a127245d3d977945819240a2df90ceb8ae516f.tar.bz2
lua-e1a127245d3d977945819240a2df90ceb8ae516f.zip
details ("luaX_token2str" doesn't need LexState)
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 106f6a3c..b9171a8b 100644
--- a/llex.h
+++ b/llex.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: llex.h,v 1.8 1998/05/27 13:03:40 roberto Exp roberto $ 2** $Id: llex.h,v 1.9 1998/06/19 16:14:09 roberto Exp roberto $
3** Lexical Analizer 3** Lexical Analizer
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -56,7 +56,7 @@ void luaX_setinput (LexState *LS, ZIO *z);
56int luaX_lex (LexState *LS); 56int luaX_lex (LexState *LS);
57void luaX_syntaxerror (LexState *ls, char *s, char *token); 57void luaX_syntaxerror (LexState *ls, char *s, char *token);
58void luaX_error (LexState *ls, char *s); 58void luaX_error (LexState *ls, char *s);
59void luaX_token2str (LexState *ls, int token, char *s); 59void luaX_token2str (int token, char *s);
60 60
61 61
62#endif 62#endif