luaG_runerror     208 lib/lua/lapi.c     luaG_runerror(L, "no calling environment");
luaG_runerror     574 lib/lua/ldebug.c     luaG_runerror(L, "attempt to %s %s " LUA_QS " (a %s value)",
luaG_runerror     577 lib/lua/ldebug.c     luaG_runerror(L, "attempt to %s a %s value", op, t);
luaG_runerror     600 lib/lua/ldebug.c     luaG_runerror(L, "attempt to compare two %s values", t1);
luaG_runerror     602 lib/lua/ldebug.c     luaG_runerror(L, "attempt to compare %s with %s", t1, t2);
luaG_runerror      28 lib/lua/ldebug.h LUAI_FUNC void luaG_runerror (lua_State *L, const char *fmt, ...);
luaG_runerror     175 lib/lua/ldo.c        luaG_runerror(L, "stack overflow");
luaG_runerror     373 lib/lua/ldo.c        luaG_runerror(L, "C stack overflow");
luaG_runerror     448 lib/lua/ldo.c      luaG_runerror(L, "attempt to yield across metamethod/C-call boundary");
luaG_runerror      52 lib/lua/lmem.c       luaG_runerror(L, errormsg);
luaG_runerror      67 lib/lua/lmem.c   luaG_runerror(L, "memory allocation error: block too big");
luaG_runerror     156 lib/lua/ltable.c     luaG_runerror(L, "invalid key to " LUA_QL("next"));  /* key not found */
luaG_runerror     282 lib/lua/ltable.c       luaG_runerror(L, "table overflow");
luaG_runerror     500 lib/lua/ltable.c     if (ttisnil(key)) luaG_runerror(L, "table index is nil");
luaG_runerror     502 lib/lua/ltable.c       luaG_runerror(L, "table index is NaN");
luaG_runerror     146 lib/lua/lvm.c    luaG_runerror(L, "loop in gettable");
luaG_runerror     177 lib/lua/lvm.c    luaG_runerror(L, "loop in settable");
luaG_runerror     315 lib/lua/lvm.c          if (l >= MAX_SIZET - tl) luaG_runerror(L, "string length overflow");
luaG_runerror     688 lib/lua/lvm.c            luaG_runerror(L, LUA_QL("for") " initial value must be a number");
luaG_runerror     690 lib/lua/lvm.c            luaG_runerror(L, LUA_QL("for") " limit must be a number");
luaG_runerror     692 lib/lua/lvm.c            luaG_runerror(L, LUA_QL("for") " step must be a number");