]> granicus.if.org Git - vim/commitdiff
updated for version 7.3.969 v7.3.969
authorBram Moolenaar <Bram@vim.org>
Sat, 18 May 2013 18:55:35 +0000 (20:55 +0200)
committerBram Moolenaar <Bram@vim.org>
Sat, 18 May 2013 18:55:35 +0000 (20:55 +0200)
Problem:    Can't built with Python 3 and without Python 2.
Solution:   Adjust #ifdef. (Xavier de Gaye)

src/version.c
src/window.c

index 76ea7137af46bccbd97a35060b39ae5eb461fb22..b897c0973ad9832df7a54ebab095f46f73a8ba89 100644 (file)
@@ -728,6 +728,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    969,
 /**/
     968,
 /**/
index a51ca947ca14af20bea8bbfe47e0276d260aa01a..41e77068fc00b00b8d691c71177e4e3be3d44bfc 100644 (file)
@@ -4058,7 +4058,8 @@ win_find_nr(winnr)
 }
 #endif
 
-#if (defined(FEAT_WINDOWS) && defined(FEAT_PYTHON)) || defined(PROTO)
+#if (defined(FEAT_WINDOWS) && (defined(FEAT_PYTHON) || defined(FEAT_PYTHON3))) \
+       || defined(PROTO)
 /*
  * Find the tabpage for window "win".
  */