1
0
mirror of https://github.com/lua/lua synced 2026-06-08 15:34:49 +00:00
This commit is contained in:
Roberto Ierusalimschy
1997-12-23 17:24:19 -02:00
parent 807ba6301c
commit 541e722360
3 changed files with 12 additions and 6 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
%{
/*
** $Id: lua.stx,v 1.24 1997/12/22 17:24:11 roberto Exp roberto $
** $Id: lua.stx,v 1.25 1997/12/22 20:57:18 roberto Exp roberto $
** Syntax analizer and code generator
** See Copyright Notice in lua.h
*/
@@ -95,7 +95,7 @@ void luaY_syntaxerror (char *s, char *token)
{
if (token[0] == 0)
token = "<eof>";
luaL_verror("%.100s;\n> last token read: \"%.50s\" at line %d in file %.50s",
luaL_verror("%.100s;\n last token read: \"%.50s\" at line %d in file %.50s",
s, token, L->lexstate->linenumber, L->mainState->f->fileName->str);
}