1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-11-05 21:07:52 +00:00

Removed the first new line in RSS titles

git-svn-id: https://conky.svn.sourceforge.net/svnroot/conky/trunk/conky1@888 7f574dfc-610e-0410-a909-a81674777703
This commit is contained in:
Toni Spets 2007-07-19 16:32:00 +00:00
parent 55811b7f53
commit 906e7e8bfd

View File

@ -4332,11 +4332,11 @@ static void generate_text_internal(char *p, int p_max_size, struct text_object *
PRSS_Item *item = &data->items[itmp];
str = item->title;
if(str) {
if(i>0)
if(itmp>0) // don't add new line before first item
strncat(p, "\n", p_max_size);
if(str[strlen(str)-1] == '\n')
str[strlen(str)-1] = 0; // remove trailing new line if one exists
strncat(p, item->title, p_max_size);
str[strlen(str)-1] = 0; // remove trailing new line if one exists, we have our own
strncat(p, str, p_max_size);
}
}
}