mirror of
https://github.com/irssi/irssi.git
synced 2024-12-04 14:46:39 -05:00
fix some stupidness
This commit is contained in:
parent
5cd13d6ea2
commit
d4ed3460fc
@ -1036,28 +1036,38 @@ static void key_paste_start(void)
|
||||
|
||||
static void key_paste_cancel(void)
|
||||
{
|
||||
if (paste_prompt) {
|
||||
paste_flush(NULL);
|
||||
}
|
||||
}
|
||||
|
||||
static void key_paste_print(void)
|
||||
{
|
||||
if (paste_prompt) {
|
||||
paste_print();
|
||||
}
|
||||
}
|
||||
|
||||
static void key_paste_send(void)
|
||||
{
|
||||
if (paste_prompt) {
|
||||
paste_flush(paste_send);
|
||||
}
|
||||
}
|
||||
|
||||
static void key_paste_edit(void)
|
||||
{
|
||||
if (paste_prompt) {
|
||||
paste_flush(paste_insert_edit);
|
||||
}
|
||||
}
|
||||
|
||||
static void key_paste_event(void)
|
||||
{
|
||||
if (paste_prompt) {
|
||||
paste_event();
|
||||
}
|
||||
}
|
||||
|
||||
time_t get_idle_time(void)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user