summaryrefslogtreecommitdiffstats
path: root/lua/lcorolib.c
diff options
context:
space:
mode:
Diffstat (limited to 'lua/lcorolib.c')
-rw-r--r--lua/lcorolib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lua/lcorolib.c b/lua/lcorolib.c
index c7932d9..ce4f6ad 100644
--- a/lua/lcorolib.c
+++ b/lua/lcorolib.c
@@ -1,5 +1,5 @@
/*
-** $Id: lcorolib.c,v 1.4 2012/04/27 18:59:04 roberto Exp $
+** $Id: lcorolib.c,v 1.5.1.1 2013/04/12 18:48:47 roberto Exp $
** Coroutine Library
** See Copyright Notice in lua.h
*/
@@ -73,7 +73,7 @@ static int luaB_auxwrap (lua_State *L) {
lua_insert(L, -2);
lua_concat(L, 2);
}
- lua_error(L); /* propagate error */
+ return lua_error(L); /* propagate error */
}
return r;
}