summaryrefslogtreecommitdiff
path: root/src/structs.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/structs.h')
-rw-r--r--src/structs.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/structs.h b/src/structs.h
index 8e4f49ab9..4f3b11f13 100644
--- a/src/structs.h
+++ b/src/structs.h
@@ -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