From: Yee Cheng Chin Date: Sat, 5 Nov 2022 14:23:14 +0000 (+0000) Subject: patch 9.0.0833: Mac: no +sound feature in huge build X-Git-Tag: v9.0.0833 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=25b8420c2b4c65f8e0292fbc006db1ea12d4b1c6;p=thirdparty%2Fvim.git patch 9.0.0833: Mac: no +sound feature in huge build Problem: Mac: no +sound feature in huge build. Solution: Enable +sound in Mac huge build. (closes #11497) --- diff --git a/src/version.c b/src/version.c index f7817f2b7b..e852ea1530 100644 --- a/src/version.c +++ b/src/version.c @@ -695,6 +695,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 833, /**/ 832, /**/ diff --git a/src/vim.h b/src/vim.h index 3ef6469e58..be0a640cab 100644 --- a/src/vim.h +++ b/src/vim.h @@ -167,7 +167,7 @@ # if defined(FEAT_NORMAL) && !defined(FEAT_CLIPBOARD) # define FEAT_CLIPBOARD # endif -# if defined(FEAT_BIG) && !defined(FEAT_SOUND) +# if defined(FEAT_HUGE) && !defined(FEAT_SOUND) # define FEAT_SOUND # endif # if defined(FEAT_SOUND)