diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-04-02 17:43:08 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-04-02 17:43:08 -0300 |
commit | 13ab5a6bb1258d640bda2e6d776d5a38f3fa867b (patch) | |
tree | 22e8c2e5c1d10001d0abdeced6046e4489962f27 /lstrlib.c | |
parent | cd99bbcd0d88e7b5864ea9c9634ce8abd9bdedda (diff) | |
download | lua-13ab5a6bb1258d640bda2e6d776d5a38f3fa867b.tar.gz lua-13ab5a6bb1258d640bda2e6d776d5a38f3fa867b.tar.bz2 lua-13ab5a6bb1258d640bda2e6d776d5a38f3fa867b.zip |
details
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 | ||