From: John Marriott Date: Sat, 14 Mar 2026 17:05:52 +0000 (+0000) Subject: patch 9.2.0163: MS-Windows: Compile warning for unused variable X-Git-Tag: v9.2.0163^0 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=09af51afbed8c01cdbe6300073b9e8cacc18fcdf;p=thirdparty%2Fvim.git patch 9.2.0163: MS-Windows: Compile warning for unused variable Problem: MS-Windows: Compile warning for unused variable (after v9.2.0160) Solution: Add ifdef HAVE_TGETENT (John Marriott). related: #19676 Signed-off-by: John Marriott Signed-off-by: Christian Brabandt --- diff --git a/src/term.c b/src/term.c index a5fab44ea8..2b9c854801 100644 --- a/src/term.c +++ b/src/term.c @@ -675,6 +675,7 @@ static tcap_entry_T builtin_kitty[] = { {(int)KS_NAME, NULL} // end marker }; +#ifdef HAVE_TGETENT /* * Additions for enabling/disabling synchronized output mode for terminal. */ @@ -683,6 +684,7 @@ static tcap_entry_T builtin_sync_output[] = { {(int)KS_ESU, "\033[?2026l"}, {(int)KS_NAME, NULL} // end marker }; +#endif /* * List of DECRQM modes that Vim supports diff --git a/src/version.c b/src/version.c index 8fcb1f0b0e..44ff463745 100644 --- a/src/version.c +++ b/src/version.c @@ -734,6 +734,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 163, /**/ 162, /**/