-
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.2871: unnessary VIM_ISDIGIT() calls, badly indented code * 8.2.2870: CmdlineChange event triggered twice for CTRL-R * 8.2.2869: using unified diff is not tested * 8.2.2868: Vim9: when executing compiled expression trylevel is changed * 8.2.2867: build failure * 8.2.2866: Vim9: memory leak when using inline function * 8.2.2865: skipping over function body fails * 8.2.2864: Vim9: crash when using inline function
- 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.2863](https://github.com/vim/vim/commit/965c04486c9364ded99b49c86f4c41228503df1f): removing a text property does not redraw optimally\n* [8.2.2862](https://github.com/vim/vim/commit/fc643e6016af80ed5be4570db5c26a6410f52d16): removing a text property causes the whole window to be redawn\n* [8.2.2861](https://github.com/vim/vim/commit/3b1373b193ce5fbf25e852277a4ecc98688c7bb8): Vim9: "legacy return" is not recognized as a return statement | ||
* [8.2.2871](https://github.com/vim/vim/commit/4781d6fd8670af415c3b78f00d70036af85bd286): unnessary VIM\_ISDIGIT() calls, badly indented code\n* [8.2.2870](https://github.com/vim/vim/commit/796139ae3ac89e27ee96dce3c7fdb87d8c839f53): CmdlineChange event triggered twice for CTRL-R\n* [8.2.2869](https://github.com/vim/vim/commit/485b62710004431a16feb4eb861365d082304a08): using unified diff is not tested\n* [8.2.2868](https://github.com/vim/vim/commit/cbe178e3dc4ad45d9b2ed5e713e7c4cc88bf8b8b): Vim9: when executing compiled expression trylevel is changed\n* [8.2.2867](https://github.com/vim/vim/commit/082a3bf961efd3668d06e3137cb1ad27c3998d07): build failure\n* [8.2.2866](https://github.com/vim/vim/commit/ecb664501d3b04d124fca69029b275c520401d40): Vim9: memory leak when using inline function\n* [8.2.2865](https://github.com/vim/vim/commit/d87c21a918d8d611750f22d68fc638bf7a79b1d5): skipping over function body fails\n* [8.2.2864](https://github.com/vim/vim/commit/074f84c01fbe70554feb6a71c0d9cacf2ef77ca5): Vim9: crash when using inline function |
Submodule vim
updated
18 files
+2 −4 | src/charset.c | |
+10 −2 | src/eval.c | |
+3 −3 | src/evalfunc.c | |
+2 −2 | src/ex_docmd.c | |
+4 −1 | src/ex_getln.c | |
+1 −1 | src/globals.h | |
+1 −1 | src/json.c | |
+5 −4 | src/ops.c | |
+2 −0 | src/structs.h | |
+1 −1 | src/tag.c | |
+6 −0 | src/testdir/test_cmdline.vim | |
+25 −3 | src/testdir/test_diffmode.vim | |
+4 −1 | src/testdir/test_vim9_builtin.vim | |
+14 −0 | src/testdir/test_vim9_func.vim | |
+91 −8 | src/userfunc.c | |
+16 −0 | src/version.c | |
+5 −5 | src/vim9compile.c | |
+61 −56 | src/vim9execute.c |