summaryrefslogtreecommitdiffstats
path: root/utf8.c
diff options
context:
space:
mode:
Diffstat (limited to 'utf8.c')
-rw-r--r--utf8.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/utf8.c b/utf8.c
index 3ddc74a5..eaef3864 100644
--- a/utf8.c
+++ b/utf8.c
@@ -324,7 +324,7 @@ wint_t utf8_decode(utf8_decoder_t *ud, int (*get)(mem_t *ctx), mem_t *ctx)
if (ch < 0xF5) {
ud->state = utf8_more3;
ud->wch = (ch & 0x7);
- ud->wch_min = 0x100000;
+ ud->wch_min = 0x10000;
break;
}
/* fallthrough */