summaryrefslogtreecommitdiffstats
path: root/src/getchar.c
diff options
context:
space:
mode:
authorYee Cheng Chin <ychin.git@gmail.com>2022-10-08 13:50:05 +0100
committerBram Moolenaar <Bram@vim.org>2022-10-08 13:50:05 +0100
commit4314e4f7da4db5d85f63cdf43b73be3689502c93 (patch)
tree37d2f5ae97f68da5ca3e0edc8ac6d6aa6b06d8e3 /src/getchar.c
parent5a049846e4c54d70094c3f29ffbd340c75e9c50e (diff)
patch 9.0.0694: no native sound support on Mac OSv9.0.0694
Problem: No native sound support on Mac OS. Solution: Add sound support for Mac OS. (Yee Cheng Chin, closes #11274)
Diffstat (limited to 'src/getchar.c')
-rw-r--r--src/getchar.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/getchar.c b/src/getchar.c
index 10f7f0e152..d1d3fc6823 100644
--- a/src/getchar.c
+++ b/src/getchar.c
@@ -2326,6 +2326,10 @@ parse_queued_messages(void)
# ifdef FEAT_TERMINAL
free_unused_terminals();
# endif
+
+# ifdef FEAT_SOUND_MACOSX
+ process_cfrunloop();
+# endif
# ifdef FEAT_SOUND_CANBERRA
if (has_sound_callback_in_queue())
invoke_sound_callback();