aboutsummaryrefslogtreecommitdiff
path: root/ltm.c
diff options
context:
space:
mode:
Diffstat (limited to 'ltm.c')
-rw-r--r--ltm.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/ltm.c b/ltm.c
index c4fd762b..24739444 100644
--- a/ltm.c
+++ b/ltm.c
@@ -168,8 +168,8 @@ void luaT_trybinTM (lua_State *L, const TValue *p1, const TValue *p2,
168 168
169 169
170void luaT_trybinassocTM (lua_State *L, const TValue *p1, const TValue *p2, 170void luaT_trybinassocTM (lua_State *L, const TValue *p1, const TValue *p2,
171 StkId res, int inv, TMS event) { 171 StkId res, int flip, TMS event) {
172 if (inv) 172 if (flip)
173 luaT_trybinTM(L, p2, p1, res, event); 173 luaT_trybinTM(L, p2, p1, res, event);
174 else 174 else
175 luaT_trybinTM(L, p1, p2, res, event); 175 luaT_trybinTM(L, p1, p2, res, event);
@@ -177,10 +177,10 @@ void luaT_trybinassocTM (lua_State *L, const TValue *p1, const TValue *p2,
177 177
178 178
179void luaT_trybiniTM (lua_State *L, const TValue *p1, lua_Integer i2, 179void luaT_trybiniTM (lua_State *L, const TValue *p1, lua_Integer i2,
180 int inv, StkId res, TMS event) { 180 int flip, StkId res, TMS event) {
181 TValue aux; 181 TValue aux;
182 setivalue(&aux, i2); 182 setivalue(&aux, i2);
183 luaT_trybinassocTM(L, p1, &aux, res, inv, event); 183 luaT_trybinassocTM(L, p1, &aux, res, flip, event);
184} 184}
185 185
186 186
@@ -205,14 +205,14 @@ int luaT_callorderTM (lua_State *L, const TValue *p1, const TValue *p2,
205 205
206 206
207int luaT_callorderiTM (lua_State *L, const TValue *p1, int v2, 207int luaT_callorderiTM (lua_State *L, const TValue *p1, int v2,
208 int inv, int isfloat, TMS event) { 208 int flip, int isfloat, TMS event) {
209 TValue aux; const TValue *p2; 209 TValue aux; const TValue *p2;
210 if (isfloat) { 210 if (isfloat) {
211 setfltvalue(&aux, cast_num(v2)); 211 setfltvalue(&aux, cast_num(v2));
212 } 212 }
213 else 213 else
214 setivalue(&aux, v2); 214 setivalue(&aux, v2);
215 if (inv) { /* arguments were exchanged? */ 215 if (flip) { /* arguments were exchanged? */
216 p2 = p1; p1 = &aux; /* correct them */ 216 p2 = p1; p1 = &aux; /* correct them */
217 } 217 }
218 else 218 else