-
Notifications
You must be signed in to change notification settings - Fork 242
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 8.2.3036: Vim9: builtin function arguments not checked at compile time * 8.2.3035: Vim9: crash when calling :def function with partial * 8.2.3034: installing packages on github CI sometimes fails
- 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.3033](https://github.com/vim/vim/commit/419a40ac9657e39646b2e0f3f71d7736b0c459d1): no error when using alpha delimiter with :global\n* [8.2.3032](https://github.com/vim/vim/commit/226b28b96150e59375d2bff44e0aadd382b0c3f1): build problems with MSVC, other crypt issues with libsodium\n* [8.2.3031](https://github.com/vim/vim/commit/22f17a29cd0b0cc3107dc6cd1d96c62eee52a7d9): no error if a function name starts with an underscore\n* [8.2.3030](https://github.com/vim/vim/commit/cb54bc65625abad9a0af501acac5c70fba17e2cc): Coverity reports a memory leak\n* [8.2.3029](https://github.com/vim/vim/commit/035bd1c99f2a8eda5ee886adde4f97ea71fb167f): Vim9: crash when using operator and list unpack assignment\n* [8.2.3028](https://github.com/vim/vim/commit/f1e7449d567c630601aa0cec6c663b791785a668): GUI mouse events not tested | ||
* [8.2.3036](https://github.com/vim/vim/commit/7237cab8f1d1a4391372cafdb57f2d97f3b32d05): Vim9: builtin function arguments not checked at compile time\n* [8.2.3035](https://github.com/vim/vim/commit/831bdf8622fdfce7f02d48f847005e3909a055a8): Vim9: crash when calling :def function with partial\n* [8.2.3034](https://github.com/vim/vim/commit/ef7be8348fd830e409504a442f3f3ad0931cfbc3): installing packages on github CI sometimes fails |
Submodule vim
updated
10 files
+1 −1 | .github/workflows/ci.yml | |
+68 −64 | src/evalfunc.c | |
+2 −0 | src/testdir/test_assert.vim | |
+62 −1 | src/testdir/test_gui.vim | |
+2 −2 | src/testdir/test_popupwin.vim | |
+237 −0 | src/testdir/test_vim9_builtin.vim | |
+14 −0 | src/testdir/test_vim9_func.vim | |
+27 −5 | src/testing.c | |
+6 −0 | src/version.c | |
+2 −2 | src/vim9type.c |