mirror of
https://github.com/rfivet/uemacs.git
synced 2025-01-11 10:46:59 -05:00
Use more portable character for visible tabs due to mismatched width on Ubuntu.
This commit is contained in:
parent
679d8d098b
commit
38aa6b97c8
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user