aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lstrlib.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lstrlib.c b/lstrlib.c
index daf86ffb..b73b306e 100644
--- a/lstrlib.c
+++ b/lstrlib.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lstrlib.c,v 1.199 2014/07/29 16:01:00 roberto Exp roberto $ 2** $Id: lstrlib.c,v 1.200 2014/07/30 13:59:24 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*/
@@ -1177,9 +1177,9 @@ static const luaL_Reg strlib[] = {
1177 {"sub", str_sub}, 1177 {"sub", str_sub},
1178 {"upper", str_upper}, 1178 {"upper", str_upper},
1179 {"dumpfloat", dumpfloat_l}, 1179 {"dumpfloat", dumpfloat_l},
1180 {"dumpint", dumpint_l}, 1180 {"dumpinteger", dumpint_l},
1181 {"undumpfloat", undumpfloat_l}, 1181 {"undumpfloat", undumpfloat_l},
1182 {"undumpint", undumpint_l}, 1182 {"undumpinteger", undumpint_l},
1183 {NULL, NULL} 1183 {NULL, NULL}
1184}; 1184};
1185 1185