]> granicus.if.org Git - vim/commitdiff
patch 9.0.1135: missing function argument v9.0.1135
authorBram Moolenaar <Bram@vim.org>
Mon, 2 Jan 2023 20:38:01 +0000 (20:38 +0000)
committerBram Moolenaar <Bram@vim.org>
Mon, 2 Jan 2023 20:38:01 +0000 (20:38 +0000)
Problem:    Missing function argument.
Solution:   Add ignore case flag.

src/version.c
src/vim9execute.c

index 2a5b3ebca36317d8f3a6bfee81ec679cfc656659..72493e3c1f265f674860868f059524159cea2437 100644 (file)
@@ -695,6 +695,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1135,
 /**/
     1134,
 /**/
index a4c6632738403555f6a622a5c21cea94cf11472d..0aed737ad5739dc55009bb0161c97f852107ca0e 100644 (file)
@@ -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);