mirror of
https://github.com/irssi/irssi.git
synced 2025-01-03 14:56:47 -05:00
Do not buffer keys when waiting for paste confirmation.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4746 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
37381fe1bc
commit
02a10e4f9c
@ -412,8 +412,9 @@ static int check_pasting(unichar key, int diff)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* continuing quick hits */
|
/* continuing quick hits */
|
||||||
if ((key == 11 || key == 3) && paste_prompt) {
|
if (paste_prompt) {
|
||||||
paste_flush(key == 11);
|
if (key == 11 || key == 3)
|
||||||
|
paste_flush(key == 11);
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user