mirror of
https://github.com/vim/vim.git
synced 2026-05-28 00:21:37 +02:00
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 <chen.foxe@gmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
committed by
Christian Brabandt
parent
ac4ccb8e53
commit
e9e4e30ee4
+1
-1
@@ -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;
|
||||
|
||||
@@ -734,6 +734,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
26,
|
||||
/**/
|
||||
25,
|
||||
/**/
|
||||
|
||||
Reference in New Issue
Block a user