summaryrefslogtreecommitdiff
path: root/src/structs.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2006-01-25 22:10:52 +0000
committerBram Moolenaar <Bram@vim.org>2006-01-25 22:10:52 +0000
commitd12f5c17be85407b7beb8622828ba6bc5903369e (patch)
treecb86c7b532ba41cd2f914bd2e2636acc09c99fe1 /src/structs.h
parent28c258fd24342fe52e85059d68ce69cf9ef5f8cd (diff)
downloadvim-git-d12f5c17be85407b7beb8622828ba6bc5903369e.tar.gz
updated for version 7.0187v7.0187
Diffstat (limited to 'src/structs.h')
-rw-r--r--src/structs.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/structs.h b/src/structs.h
index b71f592b0..e8d5b72ed 100644
--- a/src/structs.h
+++ b/src/structs.h
@@ -1085,6 +1085,9 @@ struct dictvar_S
# define B_SPELL(buf) (0)
#endif
+#ifdef FEAT_QUICKFIX
+typedef struct qf_info_S qf_info_T;
+#endif
/*
* buffer: structure that holds information about one file
@@ -1835,6 +1838,15 @@ struct window
int w_nrwidth_width; /* nr of chars to print line count. */
#endif
+#ifdef FEAT_QUICKFIX
+ qf_info_T *w_llist; /* Location list for this window */
+ /*
+ * Location list reference used in the location list window.
+ * In a non-location list window, w_llist_ref is NULL.
+ */
+ qf_info_T *w_llist_ref;
+#endif
+
#ifdef FEAT_MZSCHEME
void *w_mzscheme_ref; /* The MzScheme value for this window */