# HG changeset patch # User Bram Moolenaar # Date 1667658604 -3600 # Node ID d5a56c991218389a1a64d288eb2b028742a8e023 # Parent 3b55f63159c89af344c255991f4078a4121275fe patch 9.0.0833: Mac: no +sound feature in huge build Commit: https://github.com/vim/vim/commit/25b8420c2b4c65f8e0292fbc006db1ea12d4b1c6 Author: Yee Cheng Chin Date: Sat Nov 5 14:23:14 2022 +0000 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 https://github.com/vim/vim/issues/11497) diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -696,6 +696,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 833, +/**/ 832, /**/ 831, diff --git a/src/vim.h b/src/vim.h --- 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)