diff options
-rw-r--r-- | src/term.c | 2 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/term.c b/src/term.c index b806a8907..f8b56592d 100644 --- a/src/term.c +++ b/src/term.c @@ -4690,7 +4690,7 @@ 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) - T_8U = empty_option; + set_option_value((char_u *)"t_8u", 0L, (char_u *)"", 0); // Only set 'ttymouse' automatically if it was not set // by the user already. diff --git a/src/version.c b/src/version.c index f2170eff6..2c2c573d0 100644 --- a/src/version.c +++ b/src/version.c @@ -755,6 +755,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 978, +/**/ 977, /**/ 976, |