summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-04-04 21:06:19 +0200
committerBram Moolenaar <Bram@vim.org>2016-04-04 21:06:19 +0200
commit4c9ce053d9f2a94cd704342dd4c25670a5995cbd (patch)
tree91c4012cb9aff6fccbda28e5914856b14e0f993c
parent2a6fa564a3b5061c14ff63b8b0f12801df0b0ac2 (diff)
patch 7.4.1709v7.4.1709
Problem: Mistake in #ifdef. Solution: Change PROOF_QUALITY to DRAFT_QUALITY. (Ken Takata)
-rw-r--r--src/os_mswin.c2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/os_mswin.c b/src/os_mswin.c
index 77582cc479..f96e0a5f4e 100644
--- a/src/os_mswin.c
+++ b/src/os_mswin.c
@@ -2709,7 +2709,7 @@ quality_pairs[] = {
#ifdef PROOF_QUALITY
{"PROOF", PROOF_QUALITY},
#endif
-#ifdef PROOF_QUALITY
+#ifdef DRAFT_QUALITY
{"DRAFT", DRAFT_QUALITY},
#endif
{"DEFAULT", DEFAULT_QUALITY},
diff --git a/src/version.c b/src/version.c
index 2f365394f1..18a89e4a23 100644
--- a/src/version.c
+++ b/src/version.c
@@ -749,6 +749,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 1709,
+/**/
1708,
/**/
1707,