comparison src/window.c @ 4442:137f9d41f508 v7.3.969

updated for version 7.3.969 Problem: Can't built with Python 3 and without Python 2. Solution: Adjust #ifdef. (Xavier de Gaye)
author Bram Moolenaar <bram@vim.org>
date Sat, 18 May 2013 20:55:35 +0200
parents 7eafa576528e
children 66803af09906
comparison
equal deleted inserted replaced
4441:9065196aa740 4442:137f9d41f508
4056 return curwin; 4056 return curwin;
4057 # endif 4057 # endif
4058 } 4058 }
4059 #endif 4059 #endif
4060 4060
4061 #if (defined(FEAT_WINDOWS) && defined(FEAT_PYTHON)) || defined(PROTO) 4061 #if (defined(FEAT_WINDOWS) && (defined(FEAT_PYTHON) || defined(FEAT_PYTHON3))) \
4062 || defined(PROTO)
4062 /* 4063 /*
4063 * Find the tabpage for window "win". 4064 * Find the tabpage for window "win".
4064 */ 4065 */
4065 tabpage_T * 4066 tabpage_T *
4066 win_find_tabpage(win) 4067 win_find_tabpage(win)