# HG changeset patch # User Bram Moolenaar # Date 1576257304 -3600 # Node ID 18a4871332ceda3a68734475d559563a5f06ebea # Parent af69c9335223fcc0dfa9acb0dc55f39fff595629 patch 8.2.0001: #endif comments do reflect corresponding #ifdef Commit: https://github.com/vim/vim/commit/74ee5e2384b7f51b3dcff52720235b08a380e0ed Author: Bram Moolenaar Date: Fri Dec 13 18:13:22 2019 +0100 patch 8.2.0001: #endif comments do reflect corresponding #ifdef Problem: #endif comments do reflect corresponding #ifdef. Solution: Update the comments. (Rene Nyffenegger, closes https://github.com/vim/vim/issues/5351) diff --git a/src/ui.c b/src/ui.c --- a/src/ui.c +++ b/src/ui.c @@ -2356,9 +2356,9 @@ fill_input_buf(int exit_on_error UNUSED) ++inbufcount; } } -#endif // UNIX or VMS +#endif // UNIX || VMS || MACOS_X } -#endif // defined(UNIX) || defined(FEAT_GUI) || defined(VMS) +#endif // USE_INPUT_BUF /* * Exit because of an input read error. diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -743,6 +743,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1, +/**/ 0 };