diff options
Diffstat (limited to 'Irix/mips/include')
| -rw-r--r-- | Irix/mips/include/lib9.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Irix/mips/include/lib9.h b/Irix/mips/include/lib9.h index 9881a3a7..8db78d63 100644 --- a/Irix/mips/include/lib9.h +++ b/Irix/mips/include/lib9.h @@ -68,10 +68,12 @@ extern int tokenize(char*, char**, int); enum { - UTFmax = 3, /* maximum bytes per rune */ + UTFmax = 4, /* maximum bytes per rune */ Runesync = 0x80, /* cannot represent part of a UTF sequence (<) */ Runeself = 0x80, /* rune and UTF sequences are the same (<) */ - Runeerror = 0x80 /* decoding error in UTF */ + Runeerror = 0xFFFD, /* decoding error in UTF */ + Runemax = 0x10FFFF, /* 21-bit rune */ + Runemask = 0x1FFFFF, /* bits used by runes (see grep) */ }; /* |
