From 184a622adaa4c3d413ee0d38da063474b67ccfe3 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Thu, 1 Dec 2022 19:25:04 +0000 Subject: [PATCH] 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. --- src/optiondefs.h | 1 + src/version.c | 2 ++ 2 files changed, 3 insertions(+) diff --git a/src/optiondefs.h b/src/optiondefs.h index e7eb357d7..449e7efda 100644 --- 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 index 5a1312726..e78e71fda 100644 --- a/src/version.c +++ b/src/version.c @@ -695,6 +695,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 983, /**/ 982, /**/ -- 2.40.0