aboutsummaryrefslogtreecommitdiff
path: root/lfunc.c
diff options
context:
space:
mode:
Diffstat (limited to 'lfunc.c')
-rw-r--r--lfunc.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/lfunc.c b/lfunc.c
index 3727b6cf..3381e437 100644
--- a/lfunc.c
+++ b/lfunc.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lfunc.c,v 2.37 2013/08/27 20:04:00 roberto Exp roberto $ 2** $Id: lfunc.c,v 2.38 2013/09/11 12:26:14 roberto Exp roberto $
3** Auxiliary functions to manipulate prototypes and closures 3** Auxiliary functions to manipulate prototypes and closures
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -86,7 +86,6 @@ void luaF_close (lua_State *L, StkId level) {
86 86
87Proto *luaF_newproto (lua_State *L) { 87Proto *luaF_newproto (lua_State *L) {
88 Proto *f = &luaC_newobj(L, LUA_TPROTO, sizeof(Proto))->p; 88 Proto *f = &luaC_newobj(L, LUA_TPROTO, sizeof(Proto))->p;
89 nolocal(obj2gco(f)); /* prototypes are never local */
90 f->k = NULL; 89 f->k = NULL;
91 f->sizek = 0; 90 f->sizek = 0;
92 f->p = NULL; 91 f->p = NULL;