1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-09-30 05:59:07 +00:00

Fix window width calculation when $lua returns newlines

I just hope it doesn't break anything.
This commit is contained in:
Pavel Labath 2009-09-09 21:15:18 +02:00
parent ad51d7ae0b
commit 3736b141aa

View File

@ -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;