From: Foxe Chen Date: Thu, 19 Feb 2026 16:06:47 +0000 (+0000) Subject: patch 9.2.0026: The ss_pending_cmds variable is visible globally X-Git-Tag: v9.2.0026^0 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e9e4e30ee4c8241242628c59770d3f923b085494;p=thirdparty%2Fvim.git patch 9.2.0026: The ss_pending_cmds variable is visible globally Problem: The ss_pending_cmds variable is visible globally Solution: Make it static (Foxe Chen). closes: #19461 Signed-off-by: Foxe Chen Signed-off-by: Christian Brabandt --- diff --git a/src/os_unix.c b/src/os_unix.c index 1bc05b41d6..c7ca383d04 100644 --- a/src/os_unix.c +++ b/src/os_unix.c @@ -222,7 +222,7 @@ typedef struct ss_pending_cmd_S { struct ss_pending_cmd_S *next; // Next in list } ss_pending_cmd_T; -ss_pending_cmd_T *ss_pending_cmds; +static ss_pending_cmd_T *ss_pending_cmds; // Serial is always greater than zero static uint32_t ss_serial = 0; diff --git a/src/version.c b/src/version.c index fa0ca1f30d..2a85c543d4 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 */ +/**/ + 26, /**/ 25, /**/