# HG changeset patch # User Bram Moolenaar # Date 1669923003 -3600 # Node ID f8d32833cf31410630e579fc8f72ebb217b4d1b0 # Parent 3d32836ec216ee83f96b71580bb1ee343d1d65e7 patch 9.0.0983: stray characters displayed when starting the GUI Commit: https://github.com/vim/vim/commit/184a622adaa4c3d413ee0d38da063474b67ccfe3 Author: Bram Moolenaar Date: Thu Dec 1 19:25:04 2022 +0000 patch 9.0.0983: stray characters displayed when starting the GUI Problem: Stray characters displayed when starting the GUI. Solution: Add t_RK to the list of terminal options. diff --git a/src/optiondefs.h b/src/optiondefs.h --- a/src/optiondefs.h +++ b/src/optiondefs.h @@ -2897,6 +2897,7 @@ static struct vimoption options[] = p_term("t_RC", T_CRC) p_term("t_RI", T_CRI) p_term("t_Ri", T_SRI) + p_term("t_RK", T_CRK) p_term("t_RS", T_CRS) p_term("t_RT", T_CRT) p_term("t_RV", T_CRV) diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -696,6 +696,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 983, +/**/ 982, /**/ 981,