diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-12-20 08:26:33 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-12-20 08:26:33 -0200 |
commit | 32fd039bb563b24cbe4621dcc9b3cc18d9e078b0 (patch) | |
tree | 381804f8030b6d1d09b5cc35bd46511d7dc29739 /lstrlib.c | |
parent | 75f73172c463af9643bc187eed7f1fd195238078 (diff) | |
download | lua-32fd039bb563b24cbe4621dcc9b3cc18d9e078b0.tar.gz lua-32fd039bb563b24cbe4621dcc9b3cc18d9e078b0.tar.bz2 lua-32fd039bb563b24cbe4621dcc9b3cc18d9e078b0.zip |
`openlib' functions return new module
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.91 2002/11/25 17:33:33 roberto Exp roberto $ | 2 | ** $Id: lstrlib.c,v 1.92 2002/12/04 17:38:31 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 | */ |
@@ -763,6 +763,6 @@ static const luaL_reg strlib[] = { | |||
763 | */ | 763 | */ |
764 | LUALIB_API int lua_strlibopen (lua_State *L) { | 764 | LUALIB_API int lua_strlibopen (lua_State *L) { |
765 | luaL_openlib(L, LUA_STRLIBNAME, strlib, 0); | 765 | luaL_openlib(L, LUA_STRLIBNAME, strlib, 0); |
766 | return 0; | 766 | return 1; |
767 | } | 767 | } |
768 | 768 | ||