From 3736b141aa7fc3714363d722668ad378d68ef08d Mon Sep 17 00:00:00 2001 From: Pavel Labath Date: Wed, 9 Sep 2009 21:15:18 +0200 Subject: [PATCH] Fix window width calculation when $lua returns newlines I just hope it doesn't break anything. --- src/conky.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/conky.c b/src/conky.c index 6b9feaf..9a20e61 100644 --- a/src/conky.c +++ b/src/conky.c @@ -3236,7 +3236,8 @@ static void generate_text_internal(char *p, int p_max_size, #ifdef HAVE_ICONV iconv_convert(a, buff_in, p, p_max_size); #endif /* HAVE_ICONV */ - if (obj->type != OBJ_text && obj->type != OBJ_execp && obj->type != OBJ_execpi) { + if (obj->type != OBJ_text && obj->type != OBJ_execp && obj->type != OBJ_execpi + && obj->type != OBJ_lua && obj->type != OBJ_lua_parse) { substitute_newlines(p, a - 2); } p += a; -- 1.7.9.5