From 0802a9df9e9326c5e61f0d6b69685c2c253de5f2 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Tue, 8 Aug 2000 17:42:07 -0300 Subject: no more options for debug information: it is always on --- lcode.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'lcode.c') diff --git a/lcode.c b/lcode.c index 2a47daee..10b8c500 100644 --- a/lcode.c +++ b/lcode.c @@ -1,5 +1,5 @@ /* -** $Id: lcode.c,v 1.42 2000/08/04 19:38:35 roberto Exp roberto $ +** $Id: lcode.c,v 1.43 2000/08/08 18:26:05 roberto Exp roberto $ ** Code generator for Lua ** See Copyright Notice in lua.h */ @@ -631,8 +631,7 @@ int luaK_code2 (FuncState *fs, OpCode o, int arg1, int arg2) { case iS: i = CREATE_S(o, arg1); break; case iAB: i = CREATE_AB(o, arg1, arg2); break; } - if (fs->debug) - codelineinfo(fs); + codelineinfo(fs); /* put new instruction in code array */ luaM_growvector(fs->L, fs->f->code, fs->pc, 1, Instruction, "code size overflow", MAX_INT); -- cgit v1.2.3-55-g6feb