Skip to content

Commit f1c7207

Browse files
committed
vile: fix breakage on rendering of embedded delete char
1 parent cb8438b commit f1c7207

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Applications/util/vile.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ void con_putc(uint_fast8_t c)
115115
con_putc(' ');
116116
return;
117117
}
118-
if (c >= 127) {
118+
if (c > 127) {
119119
con_puts("\\x");
120120
con_putc(hex[c >> 4]);
121121
con_putc(hex[c & 0x0F]);

0 commit comments

Comments
 (0)