From 02134b4a8791aad79b21d75fb8cef6a3a908a767 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Fri, 5 Jun 1998 19:17:44 -0300 Subject: name: lua_pushCclosure -> lua_pushcclosure. --- lbuiltin.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lbuiltin.c') diff --git a/lbuiltin.c b/lbuiltin.c index 51d53d21..c5ca08ef 100644 --- a/lbuiltin.c +++ b/lbuiltin.c @@ -1,5 +1,5 @@ /* -** $Id: lbuiltin.c,v 1.27 1998/03/09 21:49:52 roberto Exp roberto $ +** $Id: lbuiltin.c,v 1.28 1998/05/31 22:19:35 roberto Exp roberto $ ** Built-in functions ** See Copyright Notice in lua.h */ @@ -430,7 +430,7 @@ static void testC (void) case 'c': reg[getnum(s)] = lua_createtable(); break; case 'C': { lua_CFunction f = lua_getcfunction(lua_getglobal(getname(s))); - lua_pushCclosure(f, getnum(s)); + lua_pushcclosure(f, getnum(s)); break; } case 'P': reg[getnum(s)] = lua_pop(); break; -- cgit v1.2.3-55-g6feb