To: vim_dev@googlegroups.com Subject: Patch 9.0.1135 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 9.0.1135 (after 9.0.1134) Problem: Missing function argument. Solution: Add ignore case flag. Files: src/vim9execute.c *** ../vim-9.0.1134/src/vim9execute.c 2023-01-02 20:32:18.429749782 +0000 --- src/vim9execute.c 2023-01-02 20:36:50.961539703 +0000 *************** *** 4734,4745 **** } else if (iptr->isn_type == ISN_COMPARECLASS) { ! status = typval_compare_class(tv1, tv2, exprtype, &res); } else // ISN_COMPAREOBJECT { status = typval_compare_object(tv1, tv2, ! exprtype, &res); } --ectx->ec_stack.ga_len; clear_tv(tv1); --- 4734,4746 ---- } else if (iptr->isn_type == ISN_COMPARECLASS) { ! status = typval_compare_class(tv1, tv2, ! exprtype, FALSE, &res); } else // ISN_COMPAREOBJECT { status = typval_compare_object(tv1, tv2, ! exprtype, FALSE, &res); } --ectx->ec_stack.ga_len; clear_tv(tv1); *** ../vim-9.0.1134/src/version.c 2023-01-02 20:32:18.429749782 +0000 --- src/version.c 2023-01-02 20:37:37.689478338 +0000 *************** *** 697,698 **** --- 697,700 ---- { /* Add new patch number below this line */ + /**/ + 1135, /**/ -- A year spent in artificial intelligence is enough to make one believe in God. /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\ /// \\\ \\\ sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ /// \\\ help me help AIDS victims -- http://ICCF-Holland.org ///