aboutsummaryrefslogtreecommitdiff
path: root/llex.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-01-25 16:44:21 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-01-25 16:44:21 -0200
commitd83c2a84550221c30a48647fde9c433c65af1802 (patch)
treeea525b29eaabb7cacd54bf7d42ab9e57533e4b5a /llex.h
parentd11e5adf55b11a446671775a6c7803e066fc94e8 (diff)
downloadlua-d83c2a84550221c30a48647fde9c433c65af1802.tar.gz
lua-d83c2a84550221c30a48647fde9c433c65af1802.tar.bz2
lua-d83c2a84550221c30a48647fde9c433c65af1802.zip
performance 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 ffa53aa5..918b4125 100644
--- a/llex.h
+++ b/llex.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: llex.h,v 1.15 1999/11/22 13:12:07 roberto Exp roberto $ 2** $Id: llex.h,v 1.16 1999/12/27 17:33:22 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*/
@@ -63,7 +63,7 @@ void luaX_init (lua_State *L);
63void luaX_setinput (lua_State *L, LexState *LS, ZIO *z); 63void luaX_setinput (lua_State *L, LexState *LS, ZIO *z);
64int luaX_lex (LexState *LS); 64int luaX_lex (LexState *LS);
65void luaX_syntaxerror (LexState *ls, const char *s, const char *token); 65void luaX_syntaxerror (LexState *ls, const char *s, const char *token);
66void luaX_error (LexState *ls, const char *s); 66void luaX_error (LexState *ls, const char *s, int token);
67void luaX_token2str (int token, char *s); 67void luaX_token2str (int token, char *s);
68 68
69 69