Skip to content

Commit

Permalink
patch 8.2.0979: a couple of screendump tests fail
Browse files Browse the repository at this point in the history
Problem:    A couple of screendump tests fail.
Solution:   Do not redraw when clearing t_8u.
  • Loading branch information
brammool committed Jun 14, 2020
1 parent 0c8059e commit 8e20f75
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/term.c
Original file line number Diff line number Diff line change
Expand Up @@ -4690,7 +4690,8 @@ handle_version_response(int first, int *arg, int argc, char_u *tp)
// Unless the underline RGB color is expected to work, disable "t_8u".
// It does not work for the real Xterm, it resets the background color.
if (term_props[TPR_UNDERLINE_RGB].tpr_status != TPR_YES && *T_8U != NUL)
set_option_value((char_u *)"t_8u", 0L, (char_u *)"", 0);
set_string_option_direct((char_u *)"t_8u", -1, (char_u *)"",
OPT_FREE, 0);

// Only set 'ttymouse' automatically if it was not set
// by the user already.
Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Original file line number Diff line number Diff line change
Expand Up @@ -754,6 +754,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
/**/
979,
/**/
978,
/**/
Expand Down

0 comments on commit 8e20f75

Please sign in to comment.