-
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.2753: Vim9: cannot ignore an item in assignment unpack * 8.2.2752 * 8.2.2751: Coverity warns for using NULL pointer * 8.2.2750: Vim9: error for using underscore in nested function * 8.2.2749: Vim9: test for error can be a bit flaky * 8.2.2748: Vim9: memory leak when calling :def function fails * 8.2.2747: Vim9: not always an error for too many function arguments * 8.2.2746: check for duplicate arguments does not work * 8.2.2745: Vim9: missing part of the argument change * 8.2.2744: Vim9: no way to explicitly ignore an argument * 8.2.2743: Vim9: function state stuck when compiling with ":silent!" * 8.2.2742: Vim9: when compiling a function fails it is cleared
- 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.2741](https://github.com/vim/vim/commit/1088b69451c739c698cf4c2003c2b994458ad18b): Vim9: Partial call does not check right arguments\n* [8.2.2740](https://github.com/vim/vim/commit/2a38908b05c1d3973a8edbeb5b3e05a11332faf0): Vim9: lambda with varargs doesn't work\n* [8.2.2739](https://github.com/vim/vim/commit/767034c5b82ba8999d9fed2f997436e6e3e99419): Vim9: a lambda accepts too many arguments at the script level | ||
* [8.2.2753](https://github.com/vim/vim/commit/f93bbd026205f36915312193784f987ad49fb114): Vim9: cannot ignore an item in assignment unpack\n* [8.2.2752](https://github.com/vim/vim/commit/e8e307818495d1a5d821df9bd4bde83add0520e5)\n* [8.2.2751](https://github.com/vim/vim/commit/fed9e830fcffa90cf73dd125a27d27ed7eafbd68): Coverity warns for using NULL pointer\n* [8.2.2750](https://github.com/vim/vim/commit/da479c7597a61c4d50c842df21c9294bd9bf1037): Vim9: error for using underscore in nested function\n* [8.2.2749](https://github.com/vim/vim/commit/fe95b94ffa75c4925ad16c43f94092f2b1d35fc6): Vim9: test for error can be a bit flaky\n* [8.2.2748](https://github.com/vim/vim/commit/c4297697761230489a025b3e39b992cca845b1b3): Vim9: memory leak when calling :def function fails\n* [8.2.2747](https://github.com/vim/vim/commit/bb8a7ce0a1bcfafca715275dbadc2ead612f82dd): Vim9: not always an error for too many function arguments\n* [8.2.2746](https://github.com/vim/vim/commit/87795939d01932b0d8155fd69c7494fa51c523f3): check for duplicate arguments does not work\n* [8.2.2745](https://github.com/vim/vim/commit/51e7e78de7320a734ddc2d7931e767bccaf7e6f2): Vim9: missing part of the argument change\n* [8.2.2744](https://github.com/vim/vim/commit/962c43bf0d6a33b905f2acd920d3701476ebb5c9): Vim9: no way to explicitly ignore an argument\n* [8.2.2743](https://github.com/vim/vim/commit/599410cb3cb19946cd6df22441da5de003e114bb): Vim9: function state stuck when compiling with ":silent!"\n* [8.2.2742](https://github.com/vim/vim/commit/701cc6ca9e940665a9424541f989bb38c853a498): Vim9: when compiling a function fails it is cleared |
Submodule vim
updated
17 files
+37 −11 | runtime/doc/vim9.txt | |
+2 −0 | src/errors.h | |
+6 −1 | src/eval.c | |
+11 −4 | src/evalvars.c | |
+3 −0 | src/globals.h | |
+3 −0 | src/message.c | |
+5 −4 | src/structs.h | |
+8 −0 | src/testdir/test_vim9_assign.vim | |
+2 −2 | src/testdir/test_vim9_builtin.vim | |
+79 −3 | src/testdir/test_vim9_func.vim | |
+1 −1 | src/testdir/test_vim9_script.vim | |
+1 −4 | src/typval.c | |
+17 −13 | src/userfunc.c | |
+24 −0 | src/version.c | |
+5 −4 | src/vim.h | |
+37 −9 | src/vim9compile.c | |
+11 −0 | src/vim9execute.c |