Skip to content

Commit

Permalink
Removed debug attributes.
Browse files Browse the repository at this point in the history
  • Loading branch information
mridgers committed Dec 28, 2015
1 parent a9e9a99 commit 82fc657
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clink/dll/getc.c
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ static void simulate_sigwinch()
cell_count = csbi.dwSize.X * _rl_vis_botlin;

FillConsoleOutputCharacterW(handle, ' ', cell_count, cursor_pos, &written);
FillConsoleOutputAttribute(handle, ~csbi.wAttributes & 0x77, cell_count, cursor_pos,
FillConsoleOutputAttribute(handle, csbi.wAttributes, cell_count, cursor_pos,
&written);
}

Expand Down

0 comments on commit 82fc657

Please sign in to comment.