Add LRM char if we're using Unicode drawing chars

This commit is contained in:
Dianne Skoll
2022-03-11 23:28:03 -05:00
parent f8bd79fbb2
commit 3600cd95cd

View File

@@ -1196,6 +1196,10 @@ static int WriteOneColLine(int col)
printf("%s", Decolorize(e->r, e->g, e->b));
}
/* Send a lrm control sequence if UseUTF8Chars is enabled */
if (UseUTF8Chars) {
printf("\xE2\x80\x8E");
}
/* Flesh out the rest of the column */
while(numwritten++ < ColSpaces) putchar(' ');