Home | History | Annotate | Download | only in src

Lines Matching defs:what

86   else if (*ar->what == 'm')  /* main? */
88 else if (*ar->what == 'C') {
234 #define inspectstat(stat,what) \
236 else if (WIFSIGNALED(stat)) { stat = WTERMSIG(stat); what = "signal"; }
240 #define inspectstat(stat,what) /* no op */
248 const char *what = "exit"; /* type of termination */
252 inspectstat(stat, what); /* interpret result */
253 if (*what == 'e' && stat == 0) /* successful termination? */
257 lua_pushstring(L, what);
259 return 3; /* return true/nil,what,code */
587 static int errfile (lua_State *L, const char *what, int fnameindex) {
590 lua_pushfstring(L, "cannot %s %s: %s", what, filename, serr);