From 986c11daa66b6f0004f878bcbb9deaf5edbe15ee Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 26 Feb 2014 12:55:58 -0300 Subject: removal of weird construction in definition of LUA_STRFTIMEOPTIONS (two empty strings concatenated as in "" "") --- loslib.c | 6 +++--- 1 file 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 @@ /* -** $Id: loslib.c,v 1.41 2013/05/14 15:57:11 roberto Exp roberto $ +** $Id: loslib.c,v 1.42 2014/02/26 15:27:56 roberto Exp roberto $ ** Standard Operating System library ** See Copyright Notice in lua.h */ @@ -29,8 +29,8 @@ #define LUA_STRFTIMEOPTIONS { "aAbBcdHIjmMpSUwWxXyYz%", "" } #else #define LUA_STRFTIMEOPTIONS \ - { "aAbBcCdDeFgGhHIjmMnprRStTuUVwWxXyYzZ%", "" \ - "", "E", "cCxXyY", \ + { "aAbBcCdDeFgGhHIjmMnprRStTuUVwWxXyYzZ%", "", \ + "E", "cCxXyY", \ "O", "deHImMSuUVwWy" } #endif -- cgit v1.2.3-55-g6feb