diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2014-08-20 19:06:41 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2014-08-20 19:06:41 -0300 |
commit | 4fba1174335a3eb33f057ee23a36c795d37da567 (patch) | |
tree | 6a92d8217f09505691ad16f16d5c9245d45e827a /lstrlib.c | |
parent | 2be88d50843eafae123c28dfc9750fcf473f28e4 (diff) | |
download | lua-4fba1174335a3eb33f057ee23a36c795d37da567.tar.gz lua-4fba1174335a3eb33f057ee23a36c795d37da567.tar.bz2 lua-4fba1174335a3eb33f057ee23a36c795d37da567.zip |
[un]'dumpint' -> [un]'dumpinteger'
Diffstat (limited to 'lstrlib.c')
-rw-r--r-- | lstrlib.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 | ||