aboutsummaryrefslogtreecommitdiff
path: root/lstrlib.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2014-08-20 19:06:41 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2014-08-20 19:06:41 -0300
commit4fba1174335a3eb33f057ee23a36c795d37da567 (patch)
tree6a92d8217f09505691ad16f16d5c9245d45e827a /lstrlib.c
parent2be88d50843eafae123c28dfc9750fcf473f28e4 (diff)
downloadlua-4fba1174335a3eb33f057ee23a36c795d37da567.tar.gz
lua-4fba1174335a3eb33f057ee23a36c795d37da567.tar.bz2
lua-4fba1174335a3eb33f057ee23a36c795d37da567.zip
[un]'dumpint' -> [un]'dumpinteger'
Diffstat (limited to 'lstrlib.c')
-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