Patch 8.2.1531
Problem: Vim9: test still fails on MS-Windows.
Solution: When skipping expect function to be NULL.
Files: src/vim9compile.c
*** ../vim-8.2.1530/src/vim9compile.c 2020-08-27 23:37:05.488504969 +0200
--- src/vim9compile.c 2020-08-27 23:56:23.088379948 +0200
***************
*** 4271,4277 ****
ufunc = def_function(eap, lambda_name);
if (ufunc == NULL)
! return NULL;
if (ufunc->uf_def_status == UF_TO_BE_COMPILED
&& compile_def_function(ufunc, TRUE, cctx) == FAIL)
return NULL;
--- 4271,4277 ----
ufunc = def_function(eap, lambda_name);
if (ufunc == NULL)
! return eap->skip ? (char_u *)"" : NULL;
if (ufunc->uf_def_status == UF_TO_BE_COMPILED
&& compile_def_function(ufunc, TRUE, cctx) == FAIL)
return NULL;
*** ../vim-8.2.1530/src/version.c 2020-08-27 23:37:05.488504969 +0200
--- src/version.c 2020-08-27 23:57:38.568110981 +0200
***************
*** 756,757 ****
--- 756,759 ----
{ /* Add new patch number below this line */
+ /**/
+ 1531,
/**/
--
Facepalm statement #7: "Last week I almost got pregnant!"
/// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
\\\ an exciting new programming language -- http://www.Zimbu.org ///
\\\ 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/202008272158.07RLwNmC2076983%40masaka.moolenaar.net.