comparison src/structs.h @ 14:946da5994c01

updated for version 7.0006
author vimboss
date Mon, 05 Jul 2004 15:58:32 +0000
parents 24d5189d3956
children cc049b00ee70
comparison
equal deleted inserted replaced
13:24d5189d3956 14:946da5994c01
1207 1207
1208 #ifndef SHORT_FNAME 1208 #ifndef SHORT_FNAME
1209 int b_shortname; /* this file has an 8.3 file name */ 1209 int b_shortname; /* this file has an 8.3 file name */
1210 #endif 1210 #endif
1211 1211
1212 #ifdef FEAT_MZSCHEME
1213 void *mzscheme_ref; /* The MzScheme reference to this buffer */
1214 #endif
1215
1212 #ifdef FEAT_PERL 1216 #ifdef FEAT_PERL
1213 void *perl_private; 1217 void *perl_private;
1214 #endif 1218 #endif
1215 1219
1216 #ifdef FEAT_PYTHON 1220 #ifdef FEAT_PYTHON
1217 void *python_ref; /* The Python value referring to this buffer */ 1221 void *python_ref; /* The Python reference to this buffer */
1218 #endif 1222 #endif
1219 1223
1220 #ifdef FEAT_TCL 1224 #ifdef FEAT_TCL
1221 void *tcl_ref; 1225 void *tcl_ref;
1222 #endif 1226 #endif
1589 linenr_T w_nrwidth_line_count; /* line count when ml_nrwidth_width 1593 linenr_T w_nrwidth_line_count; /* line count when ml_nrwidth_width
1590 * was computed. */ 1594 * was computed. */
1591 int w_nrwidth_width; /* nr of chars to print line count. */ 1595 int w_nrwidth_width; /* nr of chars to print line count. */
1592 #endif 1596 #endif
1593 1597
1598
1599 #ifdef FEAT_MZSCHEME
1600 void *mzscheme_ref; /* The MzScheme value referring to this window */
1601 #endif
1602
1594 #ifdef FEAT_PERL 1603 #ifdef FEAT_PERL
1595 void *perl_private; 1604 void *perl_private;
1596 #endif 1605 #endif
1597 1606
1598 #ifdef FEAT_PYTHON 1607 #ifdef FEAT_PYTHON