summaryrefslogtreecommitdiff
path: root/lvm.c
diff options
context:
space:
mode:
Diffstat (limited to 'lvm.c')
-rw-r--r--lvm.c15
1 files changed, 1 insertions, 14 deletions
diff --git a/lvm.c b/lvm.c
index 5e3c2ca0..9e044aae 100644
--- a/lvm.c
+++ b/lvm.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lvm.c,v 2.351 2018/03/16 14:21:20 roberto Exp roberto $ 2** $Id: lvm.c,v 2.352 2018/04/02 17:52:07 roberto Exp roberto $
3** Lua virtual machine 3** Lua virtual machine
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -1560,19 +1560,6 @@ void luaV_execute (lua_State *L, CallInfo *ci) {
1560 } 1560 }
1561 vmbreak; 1561 vmbreak;
1562 } 1562 }
1563 vmcase(OP_UNDEF) {
1564 TValue *rb = vRB(i);
1565 luaT_keydef(L, vra, rb, 1);
1566 vmbreak;
1567 }
1568 vmcase(OP_ISDEF) {
1569 TValue *rb = vRB(i);
1570 TValue *rc = vRC(i);
1571 int res;
1572 Protect(res = luaT_keydef(L, rb, rc, 0));
1573 setbvalue(vra, res == GETARG_k(i));
1574 vmbreak;
1575 }
1576 vmcase(OP_CALL) { 1563 vmcase(OP_CALL) {
1577 int b = GETARG_B(i); 1564 int b = GETARG_B(i);
1578 int nresults = GETARG_C(i) - 1; 1565 int nresults = GETARG_C(i) - 1;