aboutsummaryrefslogtreecommitdiff
path: root/llex.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2003-10-20 10:24:34 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2003-10-20 10:24:34 -0200
commit8502331f69a3a13bce0b2afca36dd3f607eb3696 (patch)
tree8a73d020917eb3fd8ecfa6a135d649d84be7853b /llex.h
parent9914e1bcddfb7ba0e5b4597a0540df8ec3111b3f (diff)
downloadlua-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.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/llex.h b/llex.h
index a97def0a..e37c6f54 100644
--- a/llex.h
+++ b/llex.h
@@ -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);
69int luaX_lex (LexState *LS, SemInfo *seminfo); 69int luaX_lex (LexState *LS, SemInfo *seminfo);
70void luaX_checklimit (LexState *ls, int val, int limit, const char *msg); 70void luaX_checklimit (LexState *ls, int val, int limit, const char *msg);
71void luaX_syntaxerror (LexState *ls, const char *s); 71void luaX_syntaxerror (LexState *ls, const char *s);
72void luaX_errorline (LexState *ls, const char *s, const char *token, int line);
73const char *luaX_token2str (LexState *ls, int token); 72const char *luaX_token2str (LexState *ls, int token);
74 73
75 74