diff options
author | Yegappan Lakshmanan <yegappan@yahoo.com> | 2022-01-04 17:01:44 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-01-04 17:01:44 +0000 |
commit | d94fbfc74a8b8073e7a256c95fa6f39fc527c726 (patch) | |
tree | 47e277eeb7ebbf5fe2a6e0dfbd30393eab6b5c7c /src/version.c | |
parent | fcd1635a4680d53090baa433996954bfe0642366 (diff) | |
download | vim-git-8.2.4001.tar.gz |
patch 8.2.4001: insert complete code uses global variablesv8.2.4001
Problem: Insert complete code uses global variables.
Solution: Make variables local to the file and use accessor functions.
(Yegappan Lakshmanan, closes #9470)
Diffstat (limited to 'src/version.c')
-rw-r--r-- | src/version.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/version.c b/src/version.c index 83e054a23..e4c5bb839 100644 --- a/src/version.c +++ b/src/version.c @@ -751,6 +751,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 4001, +/**/ 4000, /**/ 3999, |