Lines Matching refs:errfunc
487 ptrdiff_t errfunc; member
1022 L->errfunc=0;
1213 ptrdiff_t old_errfunc=L->errfunc;
1214 L->errfunc=ef;
1227 L->errfunc=old_errfunc;
1255 status=luaD_pcall(L,f_parser,&p,savestack(L,L->top),L->errfunc);
2309 L->errfunc=0;
2381 L->errfunc=0;
2578 if(L->errfunc!=0){
2579 StkId errfunc=restorestack(L,L->errfunc);
2580 if(!ttisfunction(errfunc))luaD_throw(L,5);
2582 setobj(L,L->top-1,errfunc);
5769 static int lua_pcall(lua_State*L,int nargs,int nresults,int errfunc){
5775 if(errfunc==0)
5778 StkId o=index2adr(L,errfunc);