changeset 4523:57393dc4b811 v7.3.1009

updated for version 7.3.1009 Problem: Compiler warning for ambiguous else. Solution: Add curly braces.
author Bram Moolenaar <bram@vim.org>
date Fri, 24 May 2013 18:58:43 +0200
parents e782f5be8263
children a67980284cba
files src/if_py_both.h src/version.c
diffstat 2 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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);
 }
--- 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,