From 034de1fe73c24dcb75658b4c9ab16dd012ba3057 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Tue, 11 Mar 2003 09:24:34 -0300 Subject: new names for functions that open C libraries --- lstrlib.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lstrlib.c') diff --git a/lstrlib.c b/lstrlib.c index d882a73d..677930a3 100644 --- a/lstrlib.c +++ b/lstrlib.c @@ -1,5 +1,5 @@ /* -** $Id: lstrlib.c,v 1.93 2002/12/20 10:26:33 roberto Exp roberto $ +** $Id: lstrlib.c,v 1.94 2003/02/12 09:10:41 roberto Exp roberto $ ** Standard library for string operations and pattern-matching ** See Copyright Notice in lua.h */ @@ -762,7 +762,7 @@ static const luaL_reg strlib[] = { /* ** Open string library */ -LUALIB_API int lua_strlibopen (lua_State *L) { +LUALIB_API int luaopen_string (lua_State *L) { luaL_openlib(L, LUA_STRLIBNAME, strlib, 0); return 1; } -- cgit v1.2.3-55-g6feb