aboutsummaryrefslogtreecommitdiff
path: root/lstrlib.c
diff options
context:
space:
mode:
Diffstat (limited to 'lstrlib.c')
-rw-r--r--lstrlib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lstrlib.c b/lstrlib.c
index ff8eba33..648a081b 100644
--- a/lstrlib.c
+++ b/lstrlib.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lstrlib.c,v 1.78 2002/03/11 13:29:40 roberto Exp roberto $ 2** $Id: lstrlib.c,v 1.79 2002/03/20 12:54:08 roberto Exp roberto $
3** Standard library for string operations and pattern-matching 3** Standard library for string operations and pattern-matching
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -727,7 +727,7 @@ static const luaL_reg strlib[] = {
727** Open string library 727** Open string library
728*/ 728*/
729LUALIB_API int lua_strlibopen (lua_State *L) { 729LUALIB_API int lua_strlibopen (lua_State *L) {
730 luaL_opennamedlib(L, "str", strlib); 730 luaL_opennamedlib(L, "str", strlib, 0);
731 return 0; 731 return 0;
732} 732}
733 733