diff options
author | Bram Moolenaar <Bram@vim.org> | 2022-02-05 18:12:34 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-02-05 18:12:34 +0000 |
commit | 82e46e5d31ba1ca8d4e322acdacdd90ab80705d9 (patch) | |
tree | c7f92d918cc5ab69444db3ec94ac85c5fe801b60 /src/version.c | |
parent | e0c2b2ceaa8ca2d0f412f17f4cf14fb4f7a3296f (diff) | |
download | vim-git-82e46e5d31ba1ca8d4e322acdacdd90ab80705d9.tar.gz |
patch 8.2.4302: Vim9: return type of getline() is too strictv8.2.4302
Problem: Vim9: return type of getline() is too strict.
Solution: Make the declared type list<any>. Also do this for other
functions returning a list of a specific type.
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 84ab4092e..89a22a04f 100644 --- a/src/version.c +++ b/src/version.c @@ -747,6 +747,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 4302, +/**/ 4301, /**/ 4300, |