mirror of
https://github.com/irssi/irssi.git
synced 2026-08-10 20:33:46 +02:00
Fix some ANSI C issues.
This commit is contained in:
parent
cf98260ede
commit
47e792da05
6 changed files with 15 additions and 9 deletions
|
|
@ -696,10 +696,11 @@ static void key_append_next_kill(void)
|
|||
|
||||
static gboolean paste_timeout(gpointer data)
|
||||
{
|
||||
int split_lines;
|
||||
paste_was_bracketed_mode = paste_bracketed_mode;
|
||||
|
||||
/* number of lines after splitting extra-long messages */
|
||||
int split_lines = paste_buffer->len / LINE_SPLIT_LIMIT;
|
||||
split_lines = paste_buffer->len / LINE_SPLIT_LIMIT;
|
||||
|
||||
/* Take into account the fact that a line may be split every LINE_SPLIT_LIMIT characters */
|
||||
if (paste_line_count == 0 && split_lines <= paste_verify_line_count) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue