# HG changeset patch # User Bram Moolenaar # Date 1655656204 -7200 # Node ID 24b7e14d55e20e3580c81697f02ee29e4b2bb60d # Parent a10714fe6372672028c945e7e2b5af021a063d03 patch 8.2.5133: MacOS: build fails Commit: https://github.com/vim/vim/commit/1f68d992cd2fd7f484fbdc14eb8a9feefe59bec8 Author: Bram Moolenaar Date: Sun Jun 19 17:22:49 2022 +0100 patch 8.2.5133: MacOS: build fails Problem: MacOS: build fails. Solution: Remove "#if 0" from timer_delete(). diff --git a/src/os_macosx.m b/src/os_macosx.m --- a/src/os_macosx.m +++ b/src/os_macosx.m @@ -370,7 +370,6 @@ timer_settime( * Disabled because it is not currently used, but an implemented provided * for completeness and possible future use. */ -#if 0 int timer_delete(timer_t timerid) { @@ -380,7 +379,6 @@ timer_delete(timer_t timerid) return 0; } -#endif #endif /* FEAT_RELTIME */ diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -735,6 +735,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 5133, +/**/ 5132, /**/ 5131,