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. --- liolib.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'liolib.c') diff --git a/liolib.c b/liolib.c index 51f24444..db374b44 100644 --- a/liolib.c +++ b/liolib.c @@ -1,5 +1,5 @@ /* -** $Id: liolib.c,v 1.18 1998/05/20 22:21:35 roberto Exp roberto $ +** $Id: liolib.c,v 1.19 1998/06/02 21:20:54 roberto Exp roberto $ ** Standard I/O (and system) library ** See Copyright Notice in lua.h */ @@ -427,7 +427,7 @@ static void openwithtags (void) /* put both tags as upvalues for these functions */ lua_pushnumber(iotag); lua_pushnumber(closedtag); - lua_pushCclosure(iolibtag[i].func, 2); + lua_pushcclosure(iolibtag[i].func, 2); lua_setglobal(iolibtag[i].name); } setfile(stdin, FINPUT, iotag); -- cgit v1.2.3-55-g6feb