comparison src/structs.h @ 2329:ad2889f48843 vim73

Added support for Python 3. (Roland Puntaier)
author Bram Moolenaar <bram@vim.org>
date Sat, 17 Jul 2010 21:19:38 +0200
parents 233eb4412f5d
children 8878a9f8db87
comparison
equal deleted inserted replaced
2328:15379284e55a 2329:ad2889f48843
1610 1610
1611 #ifdef FEAT_PYTHON 1611 #ifdef FEAT_PYTHON
1612 void *b_python_ref; /* The Python reference to this buffer */ 1612 void *b_python_ref; /* The Python reference to this buffer */
1613 #endif 1613 #endif
1614 1614
1615 #ifdef FEAT_PYTHON3
1616 void *b_python3_ref; /* The Python3 reference to this buffer */
1617 #endif
1618
1615 #ifdef FEAT_TCL 1619 #ifdef FEAT_TCL
1616 void *b_tcl_ref; 1620 void *b_tcl_ref;
1617 #endif 1621 #endif
1618 1622
1619 #ifdef FEAT_RUBY 1623 #ifdef FEAT_RUBY
2102 void *w_perl_private; 2106 void *w_perl_private;
2103 #endif 2107 #endif
2104 2108
2105 #ifdef FEAT_PYTHON 2109 #ifdef FEAT_PYTHON
2106 void *w_python_ref; /* The Python value for this window */ 2110 void *w_python_ref; /* The Python value for this window */
2111 #endif
2112
2113 #ifdef FEAT_PYTHON3
2114 void *w_python3_ref; /* The Python value for this window */
2107 #endif 2115 #endif
2108 2116
2109 #ifdef FEAT_TCL 2117 #ifdef FEAT_TCL
2110 void *w_tcl_ref; 2118 void *w_tcl_ref;
2111 #endif 2119 #endif