diff options
-rw-r--r-- | uxd.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -562,7 +562,7 @@ int dump_utf8_char(void) { } /* look at 1st byte to find out how long the sequence is */ - if(c < 0x7f) { + if(c <= 0x7f) { ascii_count++; cont_count = 0; if(c <= ' ' || c == 0x7f) |