mirror of
https://github.com/irssi/irssi.git
synced 2026-08-14 22:22:15 +02:00
Backspace/delete shouldn't modify cutbuffer.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2520 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
ec0270811e
commit
bcc5174e4a
3 changed files with 20 additions and 18 deletions
|
|
@ -280,7 +280,7 @@ static void key_forward_to_space(void)
|
|||
static void key_erase_line(void)
|
||||
{
|
||||
gui_entry_set_pos(active_entry, active_entry->text_len);
|
||||
gui_entry_erase(active_entry, active_entry->text_len);
|
||||
gui_entry_erase(active_entry, active_entry->text_len, TRUE);
|
||||
}
|
||||
|
||||
static void key_erase_to_beg_of_line(void)
|
||||
|
|
@ -288,7 +288,7 @@ static void key_erase_to_beg_of_line(void)
|
|||
int pos;
|
||||
|
||||
pos = gui_entry_get_pos(active_entry);
|
||||
gui_entry_erase(active_entry, pos);
|
||||
gui_entry_erase(active_entry, pos, TRUE);
|
||||
}
|
||||
|
||||
static void key_erase_to_end_of_line(void)
|
||||
|
|
@ -297,7 +297,7 @@ static void key_erase_to_end_of_line(void)
|
|||
|
||||
pos = gui_entry_get_pos(active_entry);
|
||||
gui_entry_set_pos(active_entry, active_entry->text_len);
|
||||
gui_entry_erase(active_entry, active_entry->text_len - pos);
|
||||
gui_entry_erase(active_entry, active_entry->text_len - pos, TRUE);
|
||||
}
|
||||
|
||||
static void key_yank_from_cutbuffer(void)
|
||||
|
|
@ -318,13 +318,13 @@ static void key_delete_character(void)
|
|||
{
|
||||
if (gui_entry_get_pos(active_entry) < active_entry->text_len) {
|
||||
gui_entry_move_pos(active_entry, 1);
|
||||
gui_entry_erase(active_entry, 1);
|
||||
gui_entry_erase(active_entry, 1, FALSE);
|
||||
}
|
||||
}
|
||||
|
||||
static void key_backspace(void)
|
||||
{
|
||||
gui_entry_erase(active_entry, 1);
|
||||
gui_entry_erase(active_entry, 1, FALSE);
|
||||
}
|
||||
|
||||
static void key_delete_previous_word(void)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue