diff options
author | Rich Felker <dalias@aerifal.cx> | 2006-10-30 09:17:57 +0000 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2006-10-30 09:17:57 +0000 |
commit | 6ccc044257a288e079bb37953766194a1dcf0eb7 (patch) | |
tree | 117a13db395c2d0e791139b9b8828a80f2822db9 | |
parent | 00da2cbd1f047558aee3b6c8ea85d6b092bb9dd1 (diff) |
use combining _, not ascii _, for underline
-rw-r--r-- | refresh.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -18,7 +18,7 @@ static void extract_cell(unsigned *ch, size_t max, struct uucell *cell) ch += l; max -= l; } if ((attr & UU_ATTR_UL) && max) - max--, *ch++ = '_'; //0x0332; + max--, *ch++ = 0x0332; for (; max; max--) *ch++ = 0; ch[-1] = 0; } |