lua

A copy of the Lua development repository
Log | Files | Refs | README

commit 2a506ea9d2ed9531352c91a4930bf80549e2e495
parent e5ec547eb36090bb884378a23743a60e4f9f8bb7
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date:   Wed, 25 Sep 1996 09:57:02 -0300

lua_linenumber is initialized in lex.c

Diffstat:
Minout.c | 4+---
1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/inout.c b/inout.c @@ -5,7 +5,7 @@ ** Also provides some predefined lua functions. */ -char *rcs_inout="$Id: inout.c,v 2.41 1996/09/24 17:30:28 roberto Exp roberto $"; +char *rcs_inout="$Id: inout.c,v 2.42 1996/09/24 21:46:44 roberto Exp roberto $"; #include <stdio.h> #include <string.h> @@ -60,7 +60,6 @@ FILE *lua_openfile (char *fn) fp = fopen (fn, "r"); if (fp == NULL) return NULL; - lua_linenumber = 1; lua_parsedfile = luaI_createfixedstring(fn)->str; return fp; } @@ -86,7 +85,6 @@ void lua_openstring (char *s) char buff[SIZE_PREF+25]; lua_setinput(stringinput); st = s; - lua_linenumber = 1; strcpy(buff, "(dostring) >> "); strncat(buff, s, SIZE_PREF); if (strlen(s) > SIZE_PREF) strcat(buff, "...");