Use more portable character for visible tabs due to mismatched width on Ubuntu.

This commit is contained in:
Renaud 2021-08-19 10:56:13 +08:00
parent 679d8d098b
commit 38aa6b97c8
1 changed files with 1 additions and 1 deletions

View File

@ -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) {