-
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.2767: compiler warning for unused argument * 8.2.2766: test failure * 8.2.2765: Vim9: not all blob operations work * 8.2.2764: memory leak when default function argument is allocated * 8.2.2763: Vim9: cannot use type in for loop unpack at script level * 8.2.2762: Vim9: function line truncated when compiling * 8.2.2761: using "syn include" does not work properly
- 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.2760](https://github.com/vim/vim/commit/f6a8d420a8d2924737f713de046947dcb487550c): Vim9: no error for changing a for loop variable\n* [8.2.2759](https://github.com/vim/vim/commit/f2253963c28e4791092620df6a6bb238c33168df): Vim9: for loop infers type of loop variable | ||
* [8.2.2767](https://github.com/vim/vim/commit/bd6406f15db210b78fa24dece3bd021a7ac085dc): compiler warning for unused argument\n* [8.2.2766](https://github.com/vim/vim/commit/b1419268901b194b295b7cea18a1d0968f9dddfc): test failure\n* [8.2.2765](https://github.com/vim/vim/commit/0e3ff1919603ee4c4a347fdf761dbdbdeb068015): Vim9: not all blob operations work\n* [8.2.2764](https://github.com/vim/vim/commit/b47bed2f7ada4dfae78f76f27473b83507e40315): memory leak when default function argument is allocated\n* [8.2.2763](https://github.com/vim/vim/commit/a3589a0d6cdb314e70421c0f2e5a2d1abf68e597): Vim9: cannot use type in for loop unpack at script level\n* [8.2.2762](https://github.com/vim/vim/commit/f62d73933af7830301989eb8162ce94a80e61fbf): Vim9: function line truncated when compiling\n* [8.2.2761](https://github.com/vim/vim/commit/2e240bd428c0033d16f201d7f837636412358199): using "syn include" does not work properly |
Submodule vim
updated
16 files
+30 −0 | src/blob.c | |
+2 −0 | src/errors.h | |
+3 −12 | src/eval.c | |
+1 −1 | src/evalvars.c | |
+2 −0 | src/proto/blob.pro | |
+9 −4 | src/syntax.c | |
+41 −10 | src/testdir/test_blob.vim | |
+9 −0 | src/testdir/test_functions.vim | |
+17 −0 | src/testdir/test_syntax.vim | |
+39 −0 | src/testdir/test_vim9_disassemble.vim | |
+15 −8 | src/testdir/test_vim9_script.vim | |
+47 −0 | src/testdir/vim9.vim | |
+9 −0 | src/userfunc.c | |
+14 −0 | src/version.c | |
+11 −1 | src/vim9compile.c | |
+12 −2 | src/vim9execute.c |