From 6ccc044257a288e079bb37953766194a1dcf0eb7 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Mon, 30 Oct 2006 09:17:57 +0000 Subject: use combining _, not ascii _, for underline --- refresh.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/refresh.c b/refresh.c index 06e6f69..77ab4f9 100644 --- a/refresh.c +++ b/refresh.c @@ -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; } -- cgit v1.2.1