Skip to content

Commit 03ff0c6

Browse files
committed
patch 9.0.1135: missing function argument
Problem: Missing function argument. Solution: Add ignore case flag.
1 parent bcf31ec commit 03ff0c6

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -695,6 +695,8 @@ static char *(features[]) =
695695

696696
static int included_patches[] =
697697
{ /* Add new patch number below this line */
698+
/**/
699+
1135,
698700
/**/
699701
1134,
700702
/**/

src/vim9execute.c

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4734,12 +4734,13 @@ exec_instructions(ectx_T *ectx)
47344734
}
47354735
else if (iptr->isn_type == ISN_COMPARECLASS)
47364736
{
4737-
status = typval_compare_class(tv1, tv2, exprtype, &res);
4737+
status = typval_compare_class(tv1, tv2,
4738+
exprtype, FALSE, &res);
47384739
}
47394740
else // ISN_COMPAREOBJECT
47404741
{
47414742
status = typval_compare_object(tv1, tv2,
4742-
exprtype, &res);
4743+
exprtype, FALSE, &res);
47434744
}
47444745
--ectx->ec_stack.ga_len;
47454746
clear_tv(tv1);

0 commit comments

Comments
 (0)