diff options
Diffstat (limited to 'lstrlib.c')
-rw-r--r-- | lstrlib.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 | */ |
729 | LUALIB_API int lua_strlibopen (lua_State *L) { | 729 | LUALIB_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 | ||