Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/term.c
Original file line number Diff line number Diff line change
Expand Up @@ -650,6 +650,7 @@ void move_cursor (const int row, const int col) {
void clear_end_of_line(const int first_unused_hpos) {
if (curX >= first_unused_hpos) return;

if (standout_mode) turn_off_standout();
if (curr_attr & BG_NOT_DEFAULT) set_attr(0);
if (ne_clr_eol) OUTPUT1 (ne_clr_eol);
else {
Expand Down