diff options
author | B. Watson <urchlay@slackware.uk> | 2024-12-17 03:21:55 -0500 |
---|---|---|
committer | B. Watson <urchlay@slackware.uk> | 2024-12-17 03:21:55 -0500 |
commit | 9baeab4ce9dfce1723bec86025333e693e734f0d (patch) | |
tree | 637d9d4f27ba97681a5873bab8818fae1b1710ac /uxd.c | |
parent | 501c53eefe39f8aa34444a1d2ebfd507662f98fd (diff) | |
download | uxd-9baeab4ce9dfce1723bec86025333e693e734f0d.tar.gz |
fix highlighting of 0x7f (delete) character
Diffstat (limited to 'uxd.c')
-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) |