From 213e9febc889d5aaae8ef0e8b777cdb4889e30c1 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy <roberto@inf.puc-rio.br> Date: Fri, 24 Mar 2000 14:26:08 -0300 Subject: limits now are in `llims.n' --- llex.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'llex.c') diff --git a/llex.c b/llex.c index a3d2cab3..f56b0a21 100644 --- a/llex.c +++ b/llex.c @@ -1,5 +1,5 @@ /* -** $Id: llex.c,v 1.52 2000/03/03 14:58:26 roberto Exp roberto $ +** $Id: llex.c,v 1.53 2000/03/10 18:37:44 roberto Exp roberto $ ** Lexical Analyzer ** See Copyright Notice in lua.h */ @@ -114,10 +114,6 @@ void luaX_setinput (lua_State *L, LexState *LS, ZIO *z) { ** ======================================================= */ -#ifndef PRAGMASIZE -#define PRAGMASIZE 80 /* arbitrary limit */ -#endif - static void skipspace (LexState *LS) { while (LS->current == ' ' || LS->current == '\t' || LS->current == '\r') next(LS); -- cgit v1.2.3-55-g6feb