From b69e712713785394ceefa11ab3e5f9636abea733 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 21 Jun 2000 15:13:56 -0300 Subject: new way to generate SETLINEs --- llex.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'llex.c') diff --git a/llex.c b/llex.c index f251ab9c..50ffc951 100644 --- a/llex.c +++ b/llex.c @@ -1,5 +1,5 @@ /* -** $Id: llex.c,v 1.63 2000/06/12 13:52:05 roberto Exp roberto $ +** $Id: llex.c,v 1.64 2000/06/19 18:05:14 roberto Exp roberto $ ** Lexical Analyzer ** See Copyright Notice in lua.h */ @@ -138,6 +138,7 @@ void luaX_setinput (lua_State *L, LexState *LS, ZIO *z, TString *source) { LS->z = z; LS->fs = NULL; LS->linenumber = 1; + LS->lastline = 1; LS->source = source; next(LS); /* read first char */ if (LS->current == '#') { -- cgit v1.2.3-55-g6feb