1
0
mirror of https://github.com/irssi/irssi.git synced 2024-09-01 04:14:16 -04:00

Fix some space indentation

This commit is contained in:
Will Storey 2018-10-08 20:23:22 -07:00
parent 4eff3f154d
commit 08b4d6c031

View File

@ -388,9 +388,9 @@ static void sig_print_text(TEXT_DEST_REC *dest, const char *text,
/* end of the line */
pos = strip_real_length(text, hilight_end,
&color_pos, &color_len);
if (color_pos > 0)
if (color_pos > 0) {
g_string_append_len(tmp, text + color_pos, color_len);
else {
} else {
/* no colors in line, change back to default */
g_string_append_c(tmp, 4);
g_string_append_c(tmp, FORMAT_STYLE_DEFAULTS);