# HG changeset patch # User Bram Moolenaar # Date 1672692304 -3600 # Node ID 035b8dbb267c34612e772b95deb652265653cb60 # Parent a1b3dead05e012af4db006dcfd694e8bd29ff2c3 patch 9.0.1135: missing function argument Commit: https://github.com/vim/vim/commit/03ff0c66810492853291311e9e11a75b92cdcb8a Author: Bram Moolenaar Date: Mon Jan 2 20:38:01 2023 +0000 patch 9.0.1135: missing function argument Problem: Missing function argument. Solution: Add ignore case flag. diff --git a/src/version.c b/src/version.c --- 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 --- 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);