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 --- llex.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'llex.c') diff --git a/llex.c b/llex.c index 50ffc951..49824b24 100644 --- a/llex.c +++ b/llex.c @@ -1,5 +1,5 @@ /* -** $Id: llex.c,v 1.64 2000/06/19 18:05:14 roberto Exp roberto $ +** $Id: llex.c,v 1.65 2000/06/21 18:13:56 roberto Exp roberto $ ** Lexical Analyzer ** See Copyright Notice in lua.h */ @@ -120,10 +120,7 @@ static void checkpragma (lua_State *L, LexState *LS) { if (LS->current == '$') { /* is a pragma? */ switch (luaL_findstring(readname(L, LS)+1, pragmas)) { case 0: /* debug */ - L->debug = 1; - break; case 1: /* nodebug */ - L->debug = 0; break; default: luaX_error(LS, "unknown pragma", TK_STRING); -- cgit v1.2.3-55-g6feb