summaryrefslogtreecommitdiff
path: root/src/list.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-09-16 23:23:36 +0200
committerBram Moolenaar <Bram@vim.org>2020-09-16 23:23:36 +0200
commit08e51f446bd4bf1a0342c471163b1ed083e9eedb (patch)
tree3a1c949a2566ab73259e7b85e21a66966b253ad0 /src/list.c
parent9939f57b7f1c17a0142ebfe4f9e0b634158593e1 (diff)
downloadvim-git-08e51f446bd4bf1a0342c471163b1ed083e9eedb.tar.gz
patch 8.2.1701: Vim9: sort("i") does not workv8.2.1701
Problem: Vim9: sort("i") does not work. Solution: Don't try getting a number for a string argument. (closes #6958)
Diffstat (limited to 'src/list.c')
-rw-r--r--src/list.c27
1 files changed, 17 insertions, 10 deletions
diff --git a/src/list.c b/src/list.c
index e4f05e52a..e86ec8686 100644
--- a/src/list.c
+++ b/src/list.c
@@ -1717,18 +1717,25 @@ do_sort_uniq(typval_T *argvars, typval_T *rettv, int sort)
else
{
int error = FALSE;
+ int nr = 0;
- i = (long)tv_get_number_chk(&argvars[1], &error);
- if (error)
- goto theend; // type error; errmsg already given
- if (i == 1)
- info.item_compare_ic = TRUE;
- else if (argvars[1].v_type != VAR_NUMBER)
- info.item_compare_func = tv_get_string(&argvars[1]);
- else if (i != 0)
+ if (argvars[1].v_type == VAR_NUMBER)
{
- emsg(_(e_invarg));
- goto theend;
+ nr = tv_get_number_chk(&argvars[1], &error);
+ if (error)
+ goto theend; // type error; errmsg already given
+ if (nr == 1)
+ info.item_compare_ic = TRUE;
+ }
+ if (nr != 1)
+ {
+ if (argvars[1].v_type != VAR_NUMBER)
+ info.item_compare_func = tv_get_string(&argvars[1]);
+ else if (nr != 0)
+ {
+ emsg(_(e_invarg));
+ goto theend;
+ }
}
if (info.item_compare_func != NULL)
{