diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-02-06 05:18:02 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-06 05:18:02 +0800 |
commit | b17f1e6fe86ae44676647ef939b361f54d95cd4d (patch) | |
tree | ac9ac6bd464b36bc1c71c6b5282846f26fbe50f9 /src/nvim/tag.c | |
parent | 92e92f02e7106fcad1597bb8f0edf1e43186a07f (diff) | |
parent | be9dbc925ce66a8880ac9ccc68e3ac902b322de0 (diff) | |
download | rneovim-b17f1e6fe86ae44676647ef939b361f54d95cd4d.tar.gz rneovim-b17f1e6fe86ae44676647ef939b361f54d95cd4d.tar.bz2 rneovim-b17f1e6fe86ae44676647ef939b361f54d95cd4d.zip |
Merge pull request #17077 from zeertzjq/vim-8.2.2324
vim-patch:8.2.{1727,2324,2363}: charcol(), getcharpos(), getcursorcharpos(), setcharpos(), setcursorcharpos()
Diffstat (limited to 'src/nvim/tag.c')
-rw-r--r-- | src/nvim/tag.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/tag.c b/src/nvim/tag.c index a10a2a0c32..54d7e54fb4 100644 --- a/src/nvim/tag.c +++ b/src/nvim/tag.c @@ -3408,7 +3408,7 @@ static void tagstack_push_items(win_T *wp, list_T *l) if ((di = tv_dict_find(itemdict, "from", -1)) == NULL) { continue; } - if (list2fpos(&di->di_tv, &mark, &fnum, NULL) != OK) { + if (list2fpos(&di->di_tv, &mark, &fnum, NULL, false) != OK) { continue; } if ((tagname = (char_u *)tv_dict_get_string(itemdict, "tagname", true)) |