From 38aa6b97c85580af8de0883e7cd9209592cd7635 Mon Sep 17 00:00:00 2001 From: Renaud Fivet Date: Thu, 19 Aug 2021 10:56:13 +0800 Subject: [PATCH] Use more portable character for visible tabs due to mismatched width on Ubuntu. --- display.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/display.c b/display.c index baa0ad1..a8281cd 100644 --- a/display.c +++ b/display.c @@ -207,7 +207,7 @@ static void vtputc( unicode_t c) { c &= 0xFF ; if( c == '\t') { - sane_vtputc( viewtab ? 0x226B : ' ') ; /* 0x226B: '≫' */ + sane_vtputc( viewtab ? 0xBB : ' ') ; /* 0xBB: '»' */ while( ((vtcol + taboff) % tabwidth) != 0) sane_vtputc( ' ') ; } else if( c < 0x20 || c == 0x7F) {