changeset 30996:d5a56c991218 v9.0.0833

patch 9.0.0833: Mac: no +sound feature in huge build Commit: https://github.com/vim/vim/commit/25b8420c2b4c65f8e0292fbc006db1ea12d4b1c6 Author: Yee Cheng Chin <ychin.git@gmail.com> 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)
author Bram Moolenaar <Bram@vim.org>
date Sat, 05 Nov 2022 15:30:04 +0100
parents 3b55f63159c8
children afe8d3697f6b
files src/version.c src/vim.h
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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,
--- 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)