mirror of
https://github.com/irssi/irssi.git
synced 2024-10-27 05:20:20 -04:00
Fix some minor style issues
This commit is contained in:
parent
79987d87f3
commit
83f9772e21
@ -710,13 +710,12 @@ static void sig_input(void)
|
||||
}
|
||||
|
||||
for (i = 0; i <= len; i++, ptr++) {
|
||||
if (ptr[0] == bp_end[0] && !memcmp(ptr, bp_end, sizeof(bp_end))) {
|
||||
if (ptr[0] == bp_end[0] && memcmp(ptr, bp_end, sizeof(bp_end)) == 0) {
|
||||
paste_bracketed_end(i, i != len);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
else if (paste_detect_time > 0 && paste_buffer->len >= 3) {
|
||||
} else if (paste_detect_time > 0 && paste_buffer->len >= 3) {
|
||||
if (paste_timeout_id != -1)
|
||||
g_source_remove(paste_timeout_id);
|
||||
paste_timeout_id = g_timeout_add(paste_detect_time, paste_timeout, NULL);
|
||||
|
Loading…
Reference in New Issue
Block a user