From: Christian Brabandt Date: Sat, 9 May 2026 14:13:52 +0000 (+0000) Subject: patch 9.2.0459: tests: test_termcodes fails (after v9.2.0456) X-Git-Tag: v9.2.0459^0 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=124f8bececb1a50e85965d12ccd52c6c25a73122;p=thirdparty%2Fvim.git patch 9.2.0459: tests: test_termcodes fails (after v9.2.0456) Problem: tests: test_termcodes fails, because it disabled DECRQM, but did not adjust the expected values in the test (after v9.2.0456) Solution: Update the test related: #20161 closes: #20173 Signed-off-by: Christian Brabandt --- diff --git a/src/testdir/test_termcodes.vim b/src/testdir/test_termcodes.vim index eaf60f53be..adabeeedbf 100644 --- a/src/testdir/test_termcodes.vim +++ b/src/testdir/test_termcodes.vim @@ -1720,7 +1720,7 @@ func Test_xx01_term_style_response() \ underline_rgb: 'u', \ mouse: 's', \ kitty: 'u', - \ decrqm: 'y' + \ decrqm: 'u' \ }, terminalprops()) set t_RV= @@ -1777,7 +1777,7 @@ func Run_libvterm_konsole_response(code) \ underline_rgb: 'u', \ mouse: 's', \ kitty: 'u', - \ decrqm: 'y' + \ decrqm: 'u' \ }, terminalprops()) endfunc @@ -1853,7 +1853,7 @@ func Test_xx05_mintty_response() \ underline_rgb: 'y', \ mouse: 's', \ kitty: 'u', - \ decrqm: 'y' + \ decrqm: 'u' \ }, terminalprops()) set t_RV= @@ -1916,7 +1916,7 @@ func Do_check_t_8u_set_reset(set_by_user) \ underline_rgb: 'u', \ mouse: 's', \ kitty: 'u', - \ decrqm: 'y' + \ decrqm: 'u' \ }, terminalprops()) call assert_equal(a:set_by_user ? default_value : '', &t_8u) endfunc @@ -1956,7 +1956,7 @@ func Test_xx07_xterm_response() \ underline_rgb: 'y', \ mouse: 'u', \ kitty: 'u', - \ decrqm: 'y' + \ decrqm: 'u' \ }, terminalprops()) " xterm >= 95 < 277 "xterm2" @@ -1973,7 +1973,7 @@ func Test_xx07_xterm_response() \ underline_rgb: 'u', \ mouse: '2', \ kitty: 'u', - \ decrqm: 'y' + \ decrqm: 'u' \ }, terminalprops()) " xterm >= 277: "sgr" @@ -1990,7 +1990,7 @@ func Test_xx07_xterm_response() \ underline_rgb: 'u', \ mouse: 's', \ kitty: 'u', - \ decrqm: 'y' + \ decrqm: 'u' \ }, terminalprops()) " xterm >= 279: "sgr" and cursor_style not reset; also check t_8u reset, diff --git a/src/version.c b/src/version.c index 2aefdf7e5b..5ffa63f7fe 100644 --- a/src/version.c +++ b/src/version.c @@ -729,6 +729,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 459, /**/ 458, /**/