summaryrefslogtreecommitdiff
path: root/lua.c
diff options
context:
space:
mode:
Diffstat (limited to 'lua.c')
-rw-r--r--lua.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lua.c b/lua.c
index f281d5be..424764f4 100644
--- a/lua.c
+++ b/lua.c
@@ -3,7 +3,7 @@
3** Linguagem para Usuarios de Aplicacao 3** Linguagem para Usuarios de Aplicacao
4*/ 4*/
5 5
6char *rcs_lua="$Id: lua.c,v 1.15 1997/04/04 22:24:51 roberto Exp roberto $"; 6char *rcs_lua="$Id: lua.c,v 1.16 1997/06/09 17:29:16 roberto Exp roberto $";
7 7
8#include <stdio.h> 8#include <stdio.h>
9#include <string.h> 9#include <string.h>
@@ -56,7 +56,7 @@ static void testC (void)
56 56
57 case 'r': { int n = getnum(s); reg[n] = lua_getref(locks[getnum(s)]); break; } 57 case 'r': { int n = getnum(s); reg[n] = lua_getref(locks[getnum(s)]); break; }
58 58
59 case 'u': lua_unlock(locks[getnum(s)]); break; 59 case 'u': lua_unref(locks[getnum(s)]); break;
60 60
61 case 'p': { int n = getnum(s); reg[n] = lua_getparam(getnum(s)); break; } 61 case 'p': { int n = getnum(s); reg[n] = lua_getparam(getnum(s)); break; }
62 62