To: vim_dev@googlegroups.com Subject: Patch 8.2.1531 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ 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 -- Bram@Moolenaar.net -- 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 ///