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

updated for version 7.0006

This commit is contained in:
Bram Moolenaar
2004-07-05 15:58:32 +00:00
parent 592e0a2a1d
commit 325b7a2fb5
44 changed files with 3959 additions and 608 deletions

View File

@@ -1209,12 +1209,16 @@ struct file_buffer
int b_shortname; /* this file has an 8.3 file name */
#endif
#ifdef FEAT_MZSCHEME
void *mzscheme_ref; /* The MzScheme reference to this buffer */
#endif
#ifdef FEAT_PERL
void *perl_private;
#endif
#ifdef FEAT_PYTHON
void *python_ref; /* The Python value referring to this buffer */
void *python_ref; /* The Python reference to this buffer */
#endif
#ifdef FEAT_TCL
@@ -1591,6 +1595,11 @@ struct window
int w_nrwidth_width; /* nr of chars to print line count. */
#endif
#ifdef FEAT_MZSCHEME
void *mzscheme_ref; /* The MzScheme value referring to this window */
#endif
#ifdef FEAT_PERL
void *perl_private;
#endif