diff options
author | Emanuele Giaquinta <exg@irssi.org> | 2007-05-25 22:21:39 +0000 |
---|---|---|
committer | exg <exg@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2007-05-25 22:21:39 +0000 |
commit | 8a9da9cf2de8189fd68be746ba55fa85b8f2b424 (patch) | |
tree | 42622f7706ac8691795682f425f161ae151d805a /src/fe-text/gui-entry.h | |
parent | ceea629e3ea0a3c8f7befe55e7afa47daa07fdd7 (diff) | |
download | irssi-8a9da9cf2de8189fd68be746ba55fa85b8f2b424.zip |
Add function to delete the whole cell under the cursor and use it for
delete_character.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4521 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/fe-text/gui-entry.h')
-rw-r--r-- | src/fe-text/gui-entry.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/fe-text/gui-entry.h b/src/fe-text/gui-entry.h index e5ab672a..29d8dea2 100644 --- a/src/fe-text/gui-entry.h +++ b/src/fe-text/gui-entry.h @@ -42,6 +42,7 @@ void gui_entry_insert_char(GUI_ENTRY_REC *entry, unichar chr); char *gui_entry_get_cutbuffer(GUI_ENTRY_REC *entry); void gui_entry_erase_to(GUI_ENTRY_REC *entry, int pos, int update_cutbuffer); void gui_entry_erase(GUI_ENTRY_REC *entry, int size, int update_cutbuffer); +void gui_entry_erase_cell(GUI_ENTRY_REC *entry); 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); |