aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lbuiltin.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lbuiltin.c b/lbuiltin.c
index 5562ccff..1d26b86e 100644
--- a/lbuiltin.c
+++ b/lbuiltin.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lbuiltin.c,v 1.23 1998/01/19 19:49:22 roberto Exp roberto $ 2** $Id: lbuiltin.c,v 1.24 1998/02/12 19:23:32 roberto Exp roberto $
3** Built-in functions 3** Built-in functions
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -312,6 +312,7 @@ static void settag (void)
312 lua_Object o = luaL_tablearg(1); 312 lua_Object o = luaL_tablearg(1);
313 lua_pushobject(o); 313 lua_pushobject(o);
314 lua_settag(luaL_check_number(2)); 314 lua_settag(luaL_check_number(2));
315 lua_pushobject(o); /* returns first argument */
315} 316}
316 317
317 318