-
Notifications
You must be signed in to change notification settings - Fork 243
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 8.2.2589: recover test hangs in the GUI * 8.2.2588: build failure with tiny features * 8.2.2587: recover test fails on FreeBSD * 8.2.2586: process id may be invalid * 8.2.2585: Vim9: illegal memory access * 8.2.2584: Vim9: type error for assigning "any" to a list * 8.2.2583: Vim9: cannot compare result of getenv() with null * 8.2.2582: Vim9: screendump test fails on MS-Windows * 8.2.2581: Vim9: sourcing Vim9 script triggers a redraw
- Loading branch information
Showing
2 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
* [8.2.2580](https://github.com/vim/vim/commit/e3ffcd9902efc756178900d9bd972c74a09c3fcd): Vim9: checking vararg type may be wrong\n* [8.2.2579](https://github.com/vim/vim/commit/d00a7fb81aff367c5dd5d86fb3883f1e7a58fed5): Vim9: crash in garbagecollect after for loop\n* [8.2.2578](https://github.com/vim/vim/commit/86c3a2162c2e78b4f0b87b47779cc1452990ee1b): Lua cannot handle a passed in lambda\n* [8.2.2577](https://github.com/vim/vim/commit/9355ae41497cbcce58ddd79f9125eb3e9dfe0a43): compiler warning for type conversion | ||
* [8.2.2589](https://github.com/vim/vim/commit/776b954622b45125dfdcb4a61243ca90956b0825): recover test hangs in the GUI\n* [8.2.2588](https://github.com/vim/vim/commit/23b32a8d6bd9ec83c0c6632b7a8bfa544ac0a2f1): build failure with tiny features\n* [8.2.2587](https://github.com/vim/vim/commit/6635ae1437e6e343c0514524a8dfb19d9525b908): recover test fails on FreeBSD\n* [8.2.2586](https://github.com/vim/vim/commit/f52f0606ed9ea19bcfc3a8343af9958f2d99eaf7): process id may be invalid\n* [8.2.2585](https://github.com/vim/vim/commit/c23555de346c53f8f6c478635c2d9e5f2992dd7f): Vim9: illegal memory access\n* [8.2.2584](https://github.com/vim/vim/commit/d345fb921678613ffc66a8afc82bc0e815c72312): Vim9: type error for assigning "any" to a list\n* [8.2.2583](https://github.com/vim/vim/commit/7ad67d1150a1e48371d64e2919591c38b80e7cfc): Vim9: cannot compare result of getenv() with null\n* [8.2.2582](https://github.com/vim/vim/commit/ffb7dcdb773c250a6acf45d5670a508be9248cb6): Vim9: screendump test fails on MS-Windows\n* [8.2.2581](https://github.com/vim/vim/commit/37294bd6a2afbf0fc8a1c34cbe102336b0bd0a82): Vim9: sourcing Vim9 script triggers a redraw |
Submodule vim
updated
23 files
+29 −0 | src/auto/configure | |
+1 −0 | src/config.h.in | |
+14 −0 | src/configure.ac | |
+1 −1 | src/evalfunc.c | |
+1 −0 | src/globals.h | |
+32 −7 | src/memline.c | |
+7 −4 | src/option.c | |
+6 −3 | src/optionstr.c | |
+1 −1 | src/scriptfile.c | |
+1 −0 | src/testdir/Make_all.mak | |
+9 −1 | src/testdir/check.vim | |
+6 −0 | src/testdir/dumps/Test_vim9_no_redraw.dump | |
+5 −0 | src/testdir/runtest.vim | |
+0 −1 | src/testdir/test_alot.vim | |
+75 −9 | src/testdir/test_recover.vim | |
+13 −0 | src/testdir/test_vim9_builtin.vim | |
+3 −0 | src/testdir/test_vim9_expr.vim | |
+33 −0 | src/testdir/test_vim9_script.vim | |
+3 −0 | src/testing.c | |
+18 −0 | src/version.c | |
+1 −0 | src/vim.h | |
+3 −2 | src/vim9compile.c | |
+1 −1 | src/vim9script.c |