mirror of
https://github.com/neovim/neovim.git
synced 2025-09-27 21:48:35 +00:00
vim-patch:7.4.2081
Problem: Line numbers in the error list are not always adjusted.
Solution: Set b_has_qf_entry properly. (Yegappan Lakshmanan)
c1542744e7
This commit is contained in:
@@ -454,6 +454,9 @@ typedef struct {
|
||||
} synblock_T;
|
||||
|
||||
|
||||
#define BUF_HAS_QF_ENTRY 1
|
||||
#define BUF_HAS_LL_ENTRY 2
|
||||
|
||||
/*
|
||||
* buffer: structure that holds information about one file
|
||||
*
|
||||
@@ -611,7 +614,7 @@ struct file_buffer {
|
||||
int b_p_bomb; ///< 'bomb'
|
||||
char_u *b_p_bh; ///< 'bufhidden'
|
||||
char_u *b_p_bt; ///< 'buftype'
|
||||
bool b_has_qf_entry; ///< quickfix exists for buffer
|
||||
int b_has_qf_entry; ///< quickfix exists for buffer
|
||||
int b_p_bl; ///< 'buflisted'
|
||||
int b_p_cin; ///< 'cindent'
|
||||
char_u *b_p_cino; ///< 'cinoptions'
|
||||
|
Reference in New Issue
Block a user