aboutsummaryrefslogtreecommitdiff
path: root/lstrlib.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-04-02 17:43:08 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-04-02 17:43:08 -0300
commit13ab5a6bb1258d640bda2e6d776d5a38f3fa867b (patch)
tree22e8c2e5c1d10001d0abdeced6046e4489962f27 /lstrlib.c
parentcd99bbcd0d88e7b5864ea9c9634ce8abd9bdedda (diff)
downloadlua-13ab5a6bb1258d640bda2e6d776d5a38f3fa867b.tar.gz
lua-13ab5a6bb1258d640bda2e6d776d5a38f3fa867b.tar.bz2
lua-13ab5a6bb1258d640bda2e6d776d5a38f3fa867b.zip
details
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