summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/version.c2
-rw-r--r--src/vim9execute.c5
2 files changed, 5 insertions, 2 deletions
diff --git a/src/version.c b/src/version.c
index 2a5b3ebca..72493e3c1 100644
--- a/src/version.c
+++ b/src/version.c
@@ -696,6 +696,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 1135,
+/**/
1134,
/**/
1133,
diff --git a/src/vim9execute.c b/src/vim9execute.c
index a4c663273..0aed737ad 100644
--- a/src/vim9execute.c
+++ b/src/vim9execute.c
@@ -4734,12 +4734,13 @@ exec_instructions(ectx_T *ectx)
}
else if (iptr->isn_type == ISN_COMPARECLASS)
{
- status = typval_compare_class(tv1, tv2, exprtype, &res);
+ status = typval_compare_class(tv1, tv2,
+ exprtype, FALSE, &res);
}
else // ISN_COMPAREOBJECT
{
status = typval_compare_object(tv1, tv2,
- exprtype, &res);
+ exprtype, FALSE, &res);
}
--ectx->ec_stack.ga_len;
clear_tv(tv1);