diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1997-12-23 17:24:19 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1997-12-23 17:24:19 -0200 |
commit | 541e722360168c78a61b8b79f4cd234252ffb6cb (patch) | |
tree | f80a9749f7acd50ee2806bc592140a6e5e97376a /lua.stx | |
parent | 807ba6301c949cb42bd9390d737938c51dd5784c (diff) | |
download | lua-541e722360168c78a61b8b79f4cd234252ffb6cb.tar.gz lua-541e722360168c78a61b8b79f4cd234252ffb6cb.tar.bz2 lua-541e722360168c78a61b8b79f4cd234252ffb6cb.zip |
details
Diffstat (limited to 'lua.stx')
-rw-r--r-- | lua.stx | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,6 +1,6 @@ | |||
1 | %{ | 1 | %{ |
2 | /* | 2 | /* |
3 | ** $Id: lua.stx,v 1.24 1997/12/22 17:24:11 roberto Exp roberto $ | 3 | ** $Id: lua.stx,v 1.25 1997/12/22 20:57:18 roberto Exp roberto $ |
4 | ** Syntax analizer and code generator | 4 | ** Syntax analizer and code generator |
5 | ** See Copyright Notice in lua.h | 5 | ** See Copyright Notice in lua.h |
6 | */ | 6 | */ |
@@ -95,7 +95,7 @@ void luaY_syntaxerror (char *s, char *token) | |||
95 | { | 95 | { |
96 | if (token[0] == 0) | 96 | if (token[0] == 0) |
97 | token = "<eof>"; | 97 | token = "<eof>"; |
98 | luaL_verror("%.100s;\n> last token read: \"%.50s\" at line %d in file %.50s", | 98 | luaL_verror("%.100s;\n last token read: \"%.50s\" at line %d in file %.50s", |
99 | s, token, L->lexstate->linenumber, L->mainState->f->fileName->str); | 99 | s, token, L->lexstate->linenumber, L->mainState->f->fileName->str); |
100 | } | 100 | } |
101 | 101 | ||