-
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.2786: Vim9: memory leak when using :s with expression * 8.2.2785: Vim9: cannot redirect to local variable * 8.2.2784: Vim9: cannot use \=expr in :substitute
- 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.2783](https://github.com/vim/vim/commit/e8209b91b9974da95899b51dba4058b411d04d5b): duplicate code for setting byte in blob, blob test may fail\n* [8.2.2782](https://github.com/vim/vim/commit/39211cba723a2cb58a97c7e08826713164b86efc): Vim9: blob operations not fully tested\n* [8.2.2781](https://github.com/vim/vim/commit/b7c21afef14bba0208f2c40d47c050a004eb2f34): add() silently skips when adding to null list or blob\n* [8.2.2780](https://github.com/vim/vim/commit/d551d6c268e435e2fbba22775510fbd0a54477f6): Vim9: for loop over blob doesn't work | ||
* [8.2.2786](https://github.com/vim/vim/commit/4f2df37a0d297a0f40ff15f8ce31285c7b529bcd): Vim9: memory leak when using :s with expression\n* [8.2.2785](https://github.com/vim/vim/commit/2d1c57ed3dd25c44b41b9ddd4cf63c01ae89007e): Vim9: cannot redirect to local variable\n* [8.2.2784](https://github.com/vim/vim/commit/4c13721482d7786f92f5a56e43b0f5c499264b7e): Vim9: cannot use \=expr in :substitute |
Submodule vim
updated
14 files
+4 −0 | src/errors.h | |
+37 −3 | src/evalvars.c | |
+24 −12 | src/ex_cmds.c | |
+3 −0 | src/globals.h | |
+5 −1 | src/proto/evalvars.pro | |
+1 −0 | src/proto/ex_cmds.pro | |
+1 −0 | src/proto/vim9execute.pro | |
+3 −0 | src/regexp.c | |
+40 −0 | src/testdir/test_vim9_cmd.vim | |
+46 −0 | src/testdir/test_vim9_disassemble.vim | |
+6 −0 | src/version.c | |
+16 −2 | src/vim9.h | |
+299 −92 | src/vim9compile.c | |
+930 −767 | src/vim9execute.c |