From 7dfa4cd655118faf164427356609fec31906dac2 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 14 Apr 2010 12:13:48 -0300 Subject: first implementation of light C functions --- lstate.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'lstate.h') diff --git a/lstate.h b/lstate.h index fc496b12..734898d0 100644 --- a/lstate.h +++ b/lstate.h @@ -1,5 +1,5 @@ /* -** $Id: lstate.h,v 2.61 2010/04/08 17:16:46 roberto Exp roberto $ +** $Id: lstate.h,v 2.62 2010/04/12 16:07:06 roberto Exp roberto $ ** Global State ** See Copyright Notice in lua.h */ @@ -105,7 +105,6 @@ typedef struct CallInfo { #define CIST_TAIL (1<<6) /* call was tail called */ -#define curr_func(L) (clvalue(L->ci->func)) #define ci_func(ci) (clvalue((ci)->func)) #define isLua(ci) ((ci)->callstatus & CIST_LUA) -- cgit v1.2.3-55-g6feb