From 425154d88803b6a9a74d1ef6c782860fc390b635 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Fri, 24 May 2013 18:58:43 +0200 Subject: [PATCH] updated for version 7.3.1009 Problem: Compiler warning for ambiguous else. Solution: Add curly braces. --- src/if_py_both.h | 2 ++ src/version.c | 2 ++ 2 files changed, 4 insertions(+) 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 @@ -728,6 +728,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1009, /**/ 1008, /**/ -- 2.40.0