From 4a714cebd1783fe6e5beafc2ce602df56a78723b Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 31 Aug 2009 11:26:28 -0300 Subject: API checks now have explanatory messages --- lapi.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'lapi.h') diff --git a/lapi.h b/lapi.h index 62d91d43..8818e377 100644 --- a/lapi.h +++ b/lapi.h @@ -1,5 +1,5 @@ /* -** $Id: lapi.h,v 2.4 2009/03/10 17:14:37 roberto Exp roberto $ +** $Id: lapi.h,v 2.5 2009/04/03 15:58:03 roberto Exp roberto $ ** Auxiliary functions from Lua API ** See Copyright Notice in lua.h */ @@ -11,7 +11,8 @@ #include "llimits.h" #include "lstate.h" -#define api_incr_top(L) {L->top++; api_check(L, L->top <= L->ci->top);} +#define api_incr_top(L) {L->top++; api_check(L, L->top <= L->ci->top, \ + "stack overflow");} #define adjustresults(L,nres) \ { if ((nres) == LUA_MULTRET && L->ci->top < L->top) L->ci->top = L->top; } -- cgit v1.2.3-55-g6feb