diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-10-01 00:38:59 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-01 00:38:59 -0400 |
commit | 36a5c394a59d333bf26780d03f182e79e73d33f5 (patch) | |
tree | 6058c5477ef2f00e18135b34c99bb61c6fc6b534 /src/nvim/eval/funcs.c | |
parent | 3430e40c609ff29e7fce52f017361583c380f46b (diff) | |
parent | 9bac43b1fbe7f9018503ce7da16d4e626e0daabb (diff) | |
download | rneovim-36a5c394a59d333bf26780d03f182e79e73d33f5.tar.gz rneovim-36a5c394a59d333bf26780d03f182e79e73d33f5.tar.bz2 rneovim-36a5c394a59d333bf26780d03f182e79e73d33f5.zip |
Merge pull request #12987 from janlazo/vim-8.1.1563
vim-patch:8.1.{1319,1563,1591},8.2.{42,499}
Diffstat (limited to 'src/nvim/eval/funcs.c')
-rw-r--r-- | src/nvim/eval/funcs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/eval/funcs.c b/src/nvim/eval/funcs.c index bd77a3b7e2..83ad948a93 100644 --- a/src/nvim/eval/funcs.c +++ b/src/nvim/eval/funcs.c @@ -9174,7 +9174,7 @@ static int item_compare2(const void *s1, const void *s2, bool keep_zero) rettv.v_type = VAR_UNKNOWN; // tv_clear() uses this res = call_func((const char_u *)func_name, - (int)STRLEN(func_name), + -1, &rettv, 2, argv, NULL, 0L, 0L, &dummy, true, partial, sortinfo->item_compare_selfdict); tv_clear(&argv[0]); |