mirror of
https://github.com/irssi/irssi.git
synced 2026-08-10 04:13:32 +02:00
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
This commit is contained in:
parent
a975788d15
commit
0d10e2cc06
5 changed files with 66 additions and 6 deletions
|
|
@ -18,6 +18,10 @@ int utf16_char_to_utf8(unichar c, char *outbuf);
|
|||
Make sure out is at least 6 x length of str. */
|
||||
void utf16_to_utf8(const unichar *str, char *out);
|
||||
|
||||
/* unichar -> UTF-8 string with position transformed. The NUL is copied as well.
|
||||
Make sure out is at least 6 x length of str. */
|
||||
void utf16_to_utf8_with_pos(const unichar *str, int spos, char *out, int *opos);
|
||||
|
||||
/* XXX I didn't check the encoding range of big5+. This is standard big5. */
|
||||
#define is_big5_los(lo) (0x40 <= (lo) && (lo) <= 0x7E) /* standard */
|
||||
#define is_big5_lox(lo) (0x80 <= (lo) && (lo) <= 0xFE) /* extended */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue