From ffff9a49da35b8b90d48f5419c9c5e0402f803af Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 30 Sep 2010 14:21:31 -0300 Subject: 'nresults' in CallInfo now refers to number of results that the current function returns (and not what it expects from a call) --- lstate.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lstate.h') diff --git a/lstate.h b/lstate.h index 0d834801..656b04fb 100644 --- a/lstate.h +++ b/lstate.h @@ -1,5 +1,5 @@ /* -** $Id: lstate.h,v 2.65 2010/05/03 17:39:48 roberto Exp roberto $ +** $Id: lstate.h,v 2.66 2010/09/03 14:14:01 roberto Exp roberto $ ** Global State ** See Copyright Notice in lua.h */ @@ -72,7 +72,7 @@ typedef struct CallInfo { StkId func; /* function index in the stack */ StkId top; /* top for this function */ struct CallInfo *previous, *next; /* dynamic call link */ - short nresults; /* expected number of results from a call */ + short nresults; /* expected number of results from this function */ lu_byte callstatus; union { struct { /* only for Lua functions */ -- cgit v1.2.3-55-g6feb