summaryrefslogtreecommitdiff
path: root/src/structs.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-07-20 21:44:37 +0200
committerBram Moolenaar <Bram@vim.org>2016-07-20 21:44:37 +0200
commitc1542744e788d96fed24dd421f43009288092504 (patch)
tree502ef35e555f7ef44ae84e6984dc407703af1af0 /src/structs.h
parentb869c0da31716ff14bbfd63346d140d0a1d68af7 (diff)
downloadvim-git-c1542744e788d96fed24dd421f43009288092504.tar.gz
patch 7.4.2081v7.4.2081
Problem: Line numbers in the error list are not always adjusted. Solution: Set b_has_qf_entry properly. (Yegappan Lakshmanan)
Diffstat (limited to 'src/structs.h')
-rw-r--r--src/structs.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/structs.h b/src/structs.h
index 00a8e035b..191fa1f92 100644
--- a/src/structs.h
+++ b/src/structs.h
@@ -1906,6 +1906,8 @@ struct file_buffer
#ifdef FEAT_QUICKFIX
char_u *b_p_bh; /* 'bufhidden' */
char_u *b_p_bt; /* 'buftype' */
+#define BUF_HAS_QF_ENTRY 1
+#define BUF_HAS_LL_ENTRY 2
int b_has_qf_entry;
#endif
int b_p_bl; /* 'buflisted' */