Merge pull request #12 from ailin-nemui/no-split-utf8

no split utf8 from the bug tracker
This commit is contained in:
Alexander Færøy 2014-06-18 22:53:01 +02:00
commit 8c08eef87a
2 changed files with 13 additions and 0 deletions

View file

@ -12,5 +12,6 @@
int mk_wcwidth(unichar c);
#define unichar_isprint(c) (((c) & ~0x80) >= 32)
#define is_utf8_leading(c) (((c) & 0xc0) != 0x80)
#endif