diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2014-02-26 12:55:58 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2014-02-26 12:55:58 -0300 |
commit | 986c11daa66b6f0004f878bcbb9deaf5edbe15ee (patch) | |
tree | 38efc939ed63536334b60965fe680f32a1d1d5f3 /loslib.c | |
parent | c6c41e85b2992bba41cac23ac8bab32e29553e84 (diff) | |
download | lua-986c11daa66b6f0004f878bcbb9deaf5edbe15ee.tar.gz lua-986c11daa66b6f0004f878bcbb9deaf5edbe15ee.tar.bz2 lua-986c11daa66b6f0004f878bcbb9deaf5edbe15ee.zip |
removal of weird construction in definition of LUA_STRFTIMEOPTIONS
(two empty strings concatenated as in "" "")
Diffstat (limited to 'loslib.c')
-rw-r--r-- | loslib.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: loslib.c,v 1.41 2013/05/14 15:57:11 roberto Exp roberto $ | 2 | ** $Id: loslib.c,v 1.42 2014/02/26 15:27:56 roberto Exp roberto $ |
3 | ** Standard Operating System library | 3 | ** Standard Operating System library |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -29,8 +29,8 @@ | |||
29 | #define LUA_STRFTIMEOPTIONS { "aAbBcdHIjmMpSUwWxXyYz%", "" } | 29 | #define LUA_STRFTIMEOPTIONS { "aAbBcdHIjmMpSUwWxXyYz%", "" } |
30 | #else | 30 | #else |
31 | #define LUA_STRFTIMEOPTIONS \ | 31 | #define LUA_STRFTIMEOPTIONS \ |
32 | { "aAbBcCdDeFgGhHIjmMnprRStTuUVwWxXyYzZ%", "" \ | 32 | { "aAbBcCdDeFgGhHIjmMnprRStTuUVwWxXyYzZ%", "", \ |
33 | "", "E", "cCxXyY", \ | 33 | "E", "cCxXyY", \ |
34 | "O", "deHImMSuUVwWy" } | 34 | "O", "deHImMSuUVwWy" } |
35 | #endif | 35 | #endif |
36 | 36 | ||