1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-01 15:26:37 +02:00

Remove dead assignments

This commit is contained in:
Sebastien Helleu
2010-10-31 18:23:16 +01:00
parent 06b48ccf83
commit ac6b299e8b
10 changed files with 8 additions and 24 deletions
-2
View File
@@ -677,7 +677,6 @@ string_has_highlight (const char *string, const char *highlight_words)
/* highlight found! */
while ((match = strstr (msg_pos, pos)) != NULL)
{
match_pre = match - 1;
match_pre = utf8_prev_char (msg, match);
if (!match_pre)
match_pre = match - 1;
@@ -813,7 +812,6 @@ string_split (const char *string, const char *separators, int keep_eol,
return NULL;
ptr1 = string2;
ptr2 = string2;
for (i = 0; i < n_items; i++)
{