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 -- [email protected] -- http://www.Moolenaar.net \\\
/// \\\
\\\ sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ ///
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/vim_dev/20230102203831.008021C0AA3%40moolenaar.net.