summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2013-05-24 18:58:43 +0200
committerBram Moolenaar <Bram@vim.org>2013-05-24 18:58:43 +0200
commit425154d88803b6a9a74d1ef6c782860fc390b635 (patch)
treed09017f98ea13860e486479d4d003cb0716277d6
parent02e26d9807295ffddf575f0dd52cf343ab087d33 (diff)
downloadvim-git-425154d88803b6a9a74d1ef6c782860fc390b635.tar.gz
updated for version 7.3.1009v7.3.1009
Problem: Compiler warning for ambiguous else. Solution: Add curly braces.
-rw-r--r--src/if_py_both.h2
-rw-r--r--src/version.c2
2 files changed, 4 insertions, 0 deletions
diff --git a/src/if_py_both.h b/src/if_py_both.h
index 777e7dae0..5ecc23961 100644
--- a/src/if_py_both.h
+++ b/src/if_py_both.h
@@ -2163,7 +2163,9 @@ WinListDestructor(WinListObject *self)
TabPageObject *tabObject = self->tabObject;
if (tabObject)
+ {
Py_DECREF((PyObject *)(tabObject));
+ }
DESTRUCTOR_FINISH(self);
}
diff --git a/src/version.c b/src/version.c
index 07bd9dce8..8504dfe25 100644
--- a/src/version.c
+++ b/src/version.c
@@ -729,6 +729,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 1009,
+/**/
1008,
/**/
1007,