aboutsummaryrefslogtreecommitdiff
path: root/ldebug.c
diff options
context:
space:
mode:
Diffstat (limited to 'ldebug.c')
-rw-r--r--ldebug.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/ldebug.c b/ldebug.c
index 17baf27c..96d47085 100644
--- a/ldebug.c
+++ b/ldebug.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ldebug.c,v 2.90 2012/08/16 17:34:28 roberto Exp roberto $ 2** $Id: ldebug.c,v 2.91 2013/04/25 15:59:42 roberto Exp roberto $
3** Debug Interface 3** Debug Interface
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -453,6 +453,7 @@ static const char *getfuncname (lua_State *L, CallInfo *ci, const char **name) {
453 case OP_SUB: tm = TM_SUB; break; 453 case OP_SUB: tm = TM_SUB; break;
454 case OP_MUL: tm = TM_MUL; break; 454 case OP_MUL: tm = TM_MUL; break;
455 case OP_DIV: tm = TM_DIV; break; 455 case OP_DIV: tm = TM_DIV; break;
456 case OP_IDIV: tm = TM_IDIV; break;
456 case OP_MOD: tm = TM_MOD; break; 457 case OP_MOD: tm = TM_MOD; break;
457 case OP_POW: tm = TM_POW; break; 458 case OP_POW: tm = TM_POW; break;
458 case OP_UNM: tm = TM_UNM; break; 459 case OP_UNM: tm = TM_UNM; break;