diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2011-04-20 13:36:28 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2011-04-20 13:36:28 -0300 |
commit | bad231c481f1edb685b2eb0f000915e9f3da2199 (patch) | |
tree | 5cf57fc2351d5177d98a5a1a8a648f24139cff7b | |
parent | a2b1c279f184ea8cfb6de941753cb2bf82ffac19 (diff) | |
download | lua-bad231c481f1edb685b2eb0f000915e9f3da2199.tar.gz lua-bad231c481f1edb685b2eb0f000915e9f3da2199.tar.bz2 lua-bad231c481f1edb685b2eb0f000915e9f3da2199.zip |
'LUA_USELONGLONG' -> 'LUA_USE_LONGLONG'
-rw-r--r-- | lstrlib.c | 4 | ||||
-rw-r--r-- | luaconf.h | 4 |
2 files changed, 4 insertions, 4 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lstrlib.c,v 1.164 2011/02/07 19:15:24 roberto Exp roberto $ | 2 | ** $Id: lstrlib.c,v 1.165 2011/03/18 19:02:33 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 | */ |
@@ -743,7 +743,7 @@ static int str_gsub (lua_State *L) { | |||
743 | ** the previous length | 743 | ** the previous length |
744 | */ | 744 | */ |
745 | #if !defined(LUA_INTFRMLEN) /* { */ | 745 | #if !defined(LUA_INTFRMLEN) /* { */ |
746 | #if defined(LUA_USELONGLONG) | 746 | #if defined(LUA_USE_LONGLONG) |
747 | 747 | ||
748 | #define LUA_INTFRMLEN "ll" | 748 | #define LUA_INTFRMLEN "ll" |
749 | #define LUA_INTFRM_T long long | 749 | #define LUA_INTFRM_T long long |
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: luaconf.h,v 1.153 2010/12/10 19:03:46 roberto Exp roberto $ | 2 | ** $Id: luaconf.h,v 1.154 2011/04/19 18:31:30 roberto Exp roberto $ |
3 | ** Configuration file for Lua | 3 | ** Configuration file for Lua |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -46,7 +46,7 @@ | |||
46 | #define LUA_USE_READLINE /* needs some extra libraries */ | 46 | #define LUA_USE_READLINE /* needs some extra libraries */ |
47 | #define LUA_USE_STRTODHEX /* assume 'strtod' handles hexa formats */ | 47 | #define LUA_USE_STRTODHEX /* assume 'strtod' handles hexa formats */ |
48 | #define LUA_USE_AFORMAT /* assume 'printf' handles 'aA' specifiers */ | 48 | #define LUA_USE_AFORMAT /* assume 'printf' handles 'aA' specifiers */ |
49 | #define LUA_USELONGLONG /* assume support for long long */ | 49 | #define LUA_USE_LONGLONG /* assume support for long long */ |
50 | #endif | 50 | #endif |
51 | 51 | ||
52 | #if defined(LUA_USE_MACOSX) | 52 | #if defined(LUA_USE_MACOSX) |