aboutsummaryrefslogtreecommitdiff
path: root/loslib.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2014-02-26 12:55:58 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2014-02-26 12:55:58 -0300
commit986c11daa66b6f0004f878bcbb9deaf5edbe15ee (patch)
tree38efc939ed63536334b60965fe680f32a1d1d5f3 /loslib.c
parentc6c41e85b2992bba41cac23ac8bab32e29553e84 (diff)
downloadlua-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.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/loslib.c b/loslib.c
index 7282c1cb..3e9a1bf8 100644
--- a/loslib.c
+++ b/loslib.c
@@ -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