diff options
author | Valentin Batz <senneth@irssi.org> | 2006-01-29 22:37:24 +0000 |
---|---|---|
committer | vb <vb@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2006-01-29 22:37:24 +0000 |
commit | 0d10e2cc06d952472cc3ce1487180c41762479ca (patch) | |
tree | ec094c0c0db15d85ffac97094f91125ec2ca2a5a /src/fe-text/gui-entry.h | |
parent | a975788d15f34ad56c82bcc8c08bb4f9de8bbdd8 (diff) | |
download | irssi-0d10e2cc06d952472cc3ce1487180c41762479ca.zip |
Fixed a bug where tab-complete didn't worked with utf8/big5 multibyte characters properly
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4229 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 0c65aae7..e5ab672a 100644 --- a/src/fe-text/gui-entry.h +++ b/src/fe-text/gui-entry.h @@ -34,6 +34,7 @@ void gui_entry_set_utf8(GUI_ENTRY_REC *entry, int utf8); void gui_entry_set_text(GUI_ENTRY_REC *entry, const char *str); char *gui_entry_get_text(GUI_ENTRY_REC *entry); +char *gui_entry_get_text_and_pos(GUI_ENTRY_REC *entry, int *pos); void gui_entry_insert_text(GUI_ENTRY_REC *entry, const char *str); void gui_entry_insert_char(GUI_ENTRY_REC *entry, unichar chr); |