summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2006-10-30 09:17:57 +0000
committerRich Felker <dalias@aerifal.cx>2006-10-30 09:17:57 +0000
commit6ccc044257a288e079bb37953766194a1dcf0eb7 (patch)
tree117a13db395c2d0e791139b9b8828a80f2822db9
parent00da2cbd1f047558aee3b6c8ea85d6b092bb9dd1 (diff)
downloaduuterm-6ccc044257a288e079bb37953766194a1dcf0eb7.tar.gz
use combining _, not ascii _, for underline
-rw-r--r--refresh.c2
1 files changed, 1 insertions, 1 deletions
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;
}