diff options
| author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2012-05-23 12:37:09 -0300 |
|---|---|---|
| committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2012-05-23 12:37:09 -0300 |
| commit | 054c20cd5b1d9491e3989cedcf3da5ebed0719cf (patch) | |
| tree | fc71ddc94ada7af256250acc63fee538b3bccf2f /lstrlib.c | |
| parent | 8e7149f496fa175c05c49e7303ff8ba54f3545c9 (diff) | |
| download | lua-054c20cd5b1d9491e3989cedcf3da5ebed0719cf.tar.gz lua-054c20cd5b1d9491e3989cedcf3da5ebed0719cf.tar.bz2 lua-054c20cd5b1d9491e3989cedcf3da5ebed0719cf.zip | |
spaces -> tabs in #defines
Diffstat (limited to 'lstrlib.c')
| -rw-r--r-- | lstrlib.c | 16 |
1 files changed, 8 insertions, 8 deletions
| @@ -1,5 +1,5 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** $Id: lstrlib.c,v 1.174 2012/04/03 19:06:19 roberto Exp roberto $ | 2 | ** $Id: lstrlib.c,v 1.175 2012/04/20 13:16:48 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 | */ |
| @@ -30,7 +30,7 @@ | |||
| 30 | 30 | ||
| 31 | 31 | ||
| 32 | /* macro to `unsign' a character */ | 32 | /* macro to `unsign' a character */ |
| 33 | #define uchar(c) ((unsigned char)(c)) | 33 | #define uchar(c) ((unsigned char)(c)) |
| 34 | 34 | ||
| 35 | 35 | ||
| 36 | 36 | ||
| @@ -747,13 +747,13 @@ static int str_gsub (lua_State *L) { | |||
| 747 | #if !defined(LUA_INTFRMLEN) /* { */ | 747 | #if !defined(LUA_INTFRMLEN) /* { */ |
| 748 | #if defined(LUA_USE_LONGLONG) | 748 | #if defined(LUA_USE_LONGLONG) |
| 749 | 749 | ||
| 750 | #define LUA_INTFRMLEN "ll" | 750 | #define LUA_INTFRMLEN "ll" |
| 751 | #define LUA_INTFRM_T long long | 751 | #define LUA_INTFRM_T long long |
| 752 | 752 | ||
| 753 | #else | 753 | #else |
| 754 | 754 | ||
| 755 | #define LUA_INTFRMLEN "l" | 755 | #define LUA_INTFRMLEN "l" |
| 756 | #define LUA_INTFRM_T long | 756 | #define LUA_INTFRM_T long |
| 757 | 757 | ||
| 758 | #endif | 758 | #endif |
| 759 | #endif /* } */ | 759 | #endif /* } */ |
| @@ -766,8 +766,8 @@ static int str_gsub (lua_State *L) { | |||
| 766 | */ | 766 | */ |
| 767 | #if !defined(LUA_FLTFRMLEN) | 767 | #if !defined(LUA_FLTFRMLEN) |
| 768 | 768 | ||
| 769 | #define LUA_FLTFRMLEN "" | 769 | #define LUA_FLTFRMLEN "" |
| 770 | #define LUA_FLTFRM_T double | 770 | #define LUA_FLTFRM_T double |
| 771 | 771 | ||
| 772 | #endif | 772 | #endif |
| 773 | 773 | ||
