fix an incorrect ESC sequence (cut and paste err)

This commit is contained in:
nhmall
2023-11-15 21:19:02 -05:00
parent a08b2e254a
commit 657d0f6105

View File

@@ -590,7 +590,7 @@ void
emit_start_bold(void)
{
DWORD unused, reserved;
static const char escseq[] = "\x1b[4m";
static const char escseq[] = "\x1b[1m";
WriteConsoleA(console.hConOut, (LPCSTR) escseq, (int) strlen(escseq),
&unused, &reserved);