diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2003-10-20 10:24:34 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2003-10-20 10:24:34 -0200 |
commit | 8502331f69a3a13bce0b2afca36dd3f607eb3696 (patch) | |
tree | 8a73d020917eb3fd8ecfa6a135d649d84be7853b /llex.h | |
parent | 9914e1bcddfb7ba0e5b4597a0540df8ec3111b3f (diff) | |
download | lua-8502331f69a3a13bce0b2afca36dd3f607eb3696.tar.gz lua-8502331f69a3a13bce0b2afca36dd3f607eb3696.tar.bz2 lua-8502331f69a3a13bce0b2afca36dd3f607eb3696.zip |
`luaX_errorline' was used only in one place
Diffstat (limited to 'llex.h')
-rw-r--r-- | llex.h | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: llex.h,v 1.47 2003/02/28 17:19:47 roberto Exp roberto $ | 2 | ** $Id: llex.h,v 1.48 2003/08/27 21:01:44 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 | */ |
@@ -69,7 +69,6 @@ TString *luaX_newstring (LexState *LS, const char *str, size_t l); | |||
69 | int luaX_lex (LexState *LS, SemInfo *seminfo); | 69 | int luaX_lex (LexState *LS, SemInfo *seminfo); |
70 | void luaX_checklimit (LexState *ls, int val, int limit, const char *msg); | 70 | void luaX_checklimit (LexState *ls, int val, int limit, const char *msg); |
71 | void luaX_syntaxerror (LexState *ls, const char *s); | 71 | void luaX_syntaxerror (LexState *ls, const char *s); |
72 | void luaX_errorline (LexState *ls, const char *s, const char *token, int line); | ||
73 | const char *luaX_token2str (LexState *ls, int token); | 72 | const char *luaX_token2str (LexState *ls, int token); |
74 | 73 | ||
75 | 74 | ||