diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-10-25 13:54:57 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-25 13:54:57 -0400 |
commit | c984a888b8249b9f0e92b2949f02b3816a5e6e3e (patch) | |
tree | f5176256d867f9a1bc68c7a59899626960b6d390 /src/nvim/quickfix.c | |
parent | c3ef19813293b0606eea68c924c5b611cdbf144b (diff) | |
parent | a868cd920a69e55284c0b8137d349e91f0b8f742 (diff) | |
download | rneovim-c984a888b8249b9f0e92b2949f02b3816a5e6e3e.tar.gz rneovim-c984a888b8249b9f0e92b2949f02b3816a5e6e3e.tar.bz2 rneovim-c984a888b8249b9f0e92b2949f02b3816a5e6e3e.zip |
Merge pull request #13151 from janlazo/vim-8.2.1892
vim-patch:8.1.1260,8.2.{87,393,506,618,1102,1892,1896,1899,1901}
Diffstat (limited to 'src/nvim/quickfix.c')
-rw-r--r-- | src/nvim/quickfix.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/quickfix.c b/src/nvim/quickfix.c index 96c903d206..1cd7879dc0 100644 --- a/src/nvim/quickfix.c +++ b/src/nvim/quickfix.c @@ -6317,6 +6317,7 @@ static void qf_free_stack(win_T *wp, qf_info_T *qi) // Populate the quickfix list with the items supplied in the list // of dictionaries. "title" will be copied to w:quickfix_title // "action" is 'a' for add, 'r' for replace. Otherwise create a new list. +// When "what" is not NULL then only set some properties. int set_errorlist(win_T *wp, list_T *list, int action, char_u *title, dict_T *what) { |