From 74ee5e2384b7f51b3dcff52720235b08a380e0ed Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Fri, 13 Dec 2019 18:13:22 +0100 Subject: [PATCH] patch 8.2.0001: #endif comments do reflect corresponding #ifdef Problem: #endif comments do reflect corresponding #ifdef. Solution: Update the comments. (Rene Nyffenegger, closes #5351) --- src/ui.c | 4 ++-- src/version.c | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/ui.c b/src/ui.c index 7ec1e568f..635957107 100644 --- 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 index 3ef62598f..b3f1fdb96 100644 --- a/src/version.c +++ b/src/version.c @@ -742,6 +742,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1, /**/ 0 }; -- 2.40.0