From 13ab5a6bb1258d640bda2e6d776d5a38f3fa867b Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Tue, 2 Apr 2002 17:43:08 -0300 Subject: details --- lstrlib.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lstrlib.c') diff --git a/lstrlib.c b/lstrlib.c index ff8eba33..648a081b 100644 --- a/lstrlib.c +++ b/lstrlib.c @@ -1,5 +1,5 @@ /* -** $Id: lstrlib.c,v 1.78 2002/03/11 13:29:40 roberto Exp roberto $ +** $Id: lstrlib.c,v 1.79 2002/03/20 12:54:08 roberto Exp roberto $ ** Standard library for string operations and pattern-matching ** See Copyright Notice in lua.h */ @@ -727,7 +727,7 @@ static const luaL_reg strlib[] = { ** Open string library */ LUALIB_API int lua_strlibopen (lua_State *L) { - luaL_opennamedlib(L, "str", strlib); + luaL_opennamedlib(L, "str", strlib, 0); return 0; } -- cgit v1.2.3-55-g6feb