# HG changeset patch # User Bram Moolenaar # Date 1622639703 -7200 # Node ID 9c0a59fcf8b9dbdabb3b7e6ecbe3e89be5c749b5 # Parent 77a262c61a3bcf7c754e958da4de00b4819775b6 patch 8.2.2924: superfluous extern declaration Commit: https://github.com/vim/vim/commit/a2e468fcac7523ae6a0ab65db5196684801fa2d1 Author: K.Takata Date: Wed Jun 2 15:08:50 2021 +0200 patch 8.2.2924: superfluous extern declaration Problem: Superfluous extern declaration. Solution: Delete the declaration. (Ken Takata, closes https://github.com/vim/vim/issues/8307) diff --git a/src/main.c b/src/main.c --- a/src/main.c +++ b/src/main.c @@ -260,8 +260,6 @@ main #ifdef MSWIN { - extern void set_alist_count(void); - // Remember the number of entries in the argument list. If it changes // we don't react on setting 'encoding'. set_alist_count(); diff --git a/src/version.c b/src/version.c --- 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 */ /**/ + 2924, +/**/ 2923, /**/ 2922,