diff options
author | Timo Sirainen <cras@irssi.org> | 2002-02-20 12:46:45 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2002-02-20 12:46:45 +0000 |
commit | bcc5174e4ada5c987b190b264fd1e3ffc046fd43 (patch) | |
tree | 754267b34697ced04725c7b39c162c280ed2db35 /src/fe-text/gui-entry.h | |
parent | ec0270811e29dab261bc70183ef3f7d66ccf612b (diff) | |
download | irssi-bcc5174e4ada5c987b190b264fd1e3ffc046fd43.zip |
Backspace/delete shouldn't modify cutbuffer.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2520 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/fe-text/gui-entry.h')
-rw-r--r-- | src/fe-text/gui-entry.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fe-text/gui-entry.h b/src/fe-text/gui-entry.h index b54ed075..2ad38041 100644 --- a/src/fe-text/gui-entry.h +++ b/src/fe-text/gui-entry.h @@ -39,7 +39,7 @@ void gui_entry_insert_text(GUI_ENTRY_REC *entry, const char *str); void gui_entry_insert_char(GUI_ENTRY_REC *entry, unichar chr); char *gui_entry_get_cutbuffer(GUI_ENTRY_REC *entry); -void gui_entry_erase(GUI_ENTRY_REC *entry, int size); +void gui_entry_erase(GUI_ENTRY_REC *entry, int size, int update_cutbuffer); void gui_entry_erase_word(GUI_ENTRY_REC *entry, int to_space); void gui_entry_erase_next_word(GUI_ENTRY_REC *entry, int to_space); |