-
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.2541: popup_create() does not allow boolean for "cursorline" * 8.2.2540: Vim9: no error for using script var name for argument * 8.2.2539: Vim9: return from finally block causes a hang * 8.2.2538: crash when using Python list iterator * 8.2.2537: Vim9: crash when map() 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.2536](https://github.com/vim/vim/commit/dc167465f87a4f03f9e085597dfcfdde39fcd2b9): Coverity complains about unchecked return value\n* [8.2.2535](https://github.com/vim/vim/commit/723ef5db980b2e69ef8bdc0dd448cb645491c464): MS-Windows: cannot run all vim9 tests\n* [8.2.2534](https://github.com/vim/vim/commit/a1070eae77f635f08b6f2612726b905796baaa58): missing test coverage\n* [8.2.2533](https://github.com/vim/vim/commit/5b5ae29bd3d7b832b6f15320430f7f191e0abd1f): Vim9: cannot use a range with :unlet\n* [8.2.2532](https://github.com/vim/vim/commit/ada1d870b4a818151cfba1c18962af2369b88df9): Vim9: confusing error if :k is used with a range | ||
* [8.2.2541](https://github.com/vim/vim/commit/6bfc475f717aa0412d13163d47ff6210fa611fb5): popup\_create() does not allow boolean for "cursorline"\n* [8.2.2540](https://github.com/vim/vim/commit/b4893b84507570f24af32597716ffb67fb0ef24e): Vim9: no error for using script var name for argument\n* [8.2.2539](https://github.com/vim/vim/commit/7e82c5f338efe5661951675565f27f6512901a6e): Vim9: return from finally block causes a hang\n* [8.2.2538](https://github.com/vim/vim/commit/21578271bb717f7ab7b8728e9efa54c3b60ee7e4): crash when using Python list iterator\n* [8.2.2537](https://github.com/vim/vim/commit/027c4ab4d2e3ff031b98e0fb648f5acbea180293): Vim9: crash when map() fails |
Submodule vim
updated
15 files
+2 −0 | src/if_py_both.h | |
+1 −0 | src/list.c | |
+5 −10 | src/popupwin.c | |
+1 −0 | src/proto/vim9compile.pro | |
+13 −0 | src/testdir/test_popupwin.vim | |
+3 −0 | src/testdir/test_python3.vim | |
+21 −0 | src/testdir/test_vim9_builtin.vim | |
+4 −3 | src/testdir/test_vim9_disassemble.vim | |
+9 −0 | src/testdir/test_vim9_func.vim | |
+10 −0 | src/testdir/test_vim9_script.vim | |
+8 −0 | src/userfunc.c | |
+10 −0 | src/version.c | |
+8 −1 | src/vim9.h | |
+30 −22 | src/vim9compile.c | |
+36 −13 | src/vim9execute.c |