summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-12-13 18:13:22 +0100
committerBram Moolenaar <Bram@vim.org>2019-12-13 18:13:22 +0100
commit74ee5e2384b7f51b3dcff52720235b08a380e0ed (patch)
tree2e61dba3db8a1457549c2c63e2538ea77bea882d
parent98056533b96b6b5d8849641de93185dd7bcadc44 (diff)
downloadvim-git-74ee5e2384b7f51b3dcff52720235b08a380e0ed.tar.gz
patch 8.2.0001: #endif comments do reflect corresponding #ifdefv8.2.0001
Problem: #endif comments do reflect corresponding #ifdef. Solution: Update the comments. (Rene Nyffenegger, closes #5351)
-rw-r--r--src/ui.c4
-rw-r--r--src/version.c2
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
@@ -743,6 +743,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 1,
+/**/
0
};