0
0
mirror of https://github.com/vim/vim.git synced 2025-09-24 03:44:06 -04:00

updated for version 7.3.969

Problem:    Can't built with Python 3 and without Python 2.
Solution:   Adjust #ifdef. (Xavier de Gaye)
This commit is contained in:
Bram Moolenaar
2013-05-18 20:55:35 +02:00
parent 7533fddd09
commit 6fa41fb374
2 changed files with 4 additions and 1 deletions

View File

@@ -728,6 +728,8 @@ static char *(features[]) =
static int included_patches[] = static int included_patches[] =
{ /* Add new patch number below this line */ { /* Add new patch number below this line */
/**/
969,
/**/ /**/
968, 968,
/**/ /**/

View File

@@ -4058,7 +4058,8 @@ win_find_nr(winnr)
} }
#endif #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". * Find the tabpage for window "win".
*/ */