aboutsummaryrefslogtreecommitdiff
path: root/lstrlib.c
diff options
context:
space:
mode:
Diffstat (limited to 'lstrlib.c')
-rw-r--r--lstrlib.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/lstrlib.c b/lstrlib.c
index c973d0e4..4f67a72c 100644
--- a/lstrlib.c
+++ b/lstrlib.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lstrlib.c,v 1.36 1999/11/11 16:45:04 roberto Exp roberto $ 2** $Id: lstrlib.c,v 1.37 1999/11/22 13:12:07 roberto Exp roberto $
3** Standard library for strings and pattern-matching 3** Standard library for strings and pattern-matching
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -614,7 +614,6 @@ static const struct luaL_reg strlib[] = {
614/* 614/*
615** Open string library 615** Open string library
616*/ 616*/
617void lua_strlibopen (lua_State *L) 617void lua_strlibopen (lua_State *L) {
618{ 618 luaL_openl(L, strlib);
619 luaL_openlib(L, strlib, (sizeof(strlib)/sizeof(strlib[0])));
620} 619}