| 721 | |
| 722 | |
| 723 | l_noret luaG_opinterror (lua_State *L, const TValue *p1, |
| 724 | const TValue *p2, const char *msg) { |
| 725 | if (!ttisnumber(p1)) /* first operand is wrong? */ |
| 726 | p2 = p1; /* now second is wrong */ |
| 727 | luaG_typeerror(L, p2, msg); |
| 728 | } |
| 729 | |
| 730 | |
| 731 | /* |
no test coverage detected