-
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.3322: Vim9: checking type of dict does not check member type * 8.2.3321: some code is not tested * 8.2.3320: some local functions are not static * 8.2.3319: Coverity action on github does not work
- 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.3318](https://github.com/vim/vim/commit/ed8b099fd23b20d7b5a436182bde6672c8686189): Vim9: cannot ignore quotes in number at the command line\n* [8.2.3317](https://github.com/vim/vim/commit/33ea9fd4d849324f1e958cc669987a51cf0baded): Vim9: No error for missing white space before return type\n* [8.2.3316](https://github.com/vim/vim/commit/80a070c36125662556232ab6e83da373e22953d8): float test fails\n* [8.2.3315](https://github.com/vim/vim/commit/2950065e18649d234b16e60dd0e3d75adeca4513): cannot use single quote in a float number for readability\n* [8.2.3314](https://github.com/vim/vim/commit/267359902c8792fed13543ddeb56c6df0ae74957): behavior of exists() in a :def function is unpredictable | ||
* [8.2.3322](https://github.com/vim/vim/commit/b56c4419d42e024e79b1772c8468c0da7c11275f): Vim9: checking type of dict does not check member type\n* [8.2.3321](https://github.com/vim/vim/commit/bd9e7961256ea6a98bd5a7bfe14e32c4c47186e6): some code is not tested\n* [8.2.3320](https://github.com/vim/vim/commit/8ee52affe7fd4daa03e002bc06611f0a8c3bcd5b): some local functions are not static\n* [8.2.3319](https://github.com/vim/vim/commit/eed9616120f60ad17d5e133f505bba5c559aee89): Coverity action on github does not work |
Submodule vim
updated
35 files
+2 −2 | .github/workflows/coverity.yml | |
+9 −15 | src/alloc.c | |
+1 −1 | src/channel.c | |
+1 −1 | src/dict.c | |
+2 −2 | src/digraph.c | |
+1 −1 | src/edit.c | |
+1 −1 | src/ex_docmd.c | |
+1 −1 | src/getchar.c | |
+1 −1 | src/job.c | |
+1 −1 | src/list.c | |
+0 −1,110 | src/message.c | |
+18 −18 | src/profiler.c | |
+0 −1 | src/proto/channel.pro | |
+0 −1 | src/proto/dict.pro | |
+0 −2 | src/proto/digraph.pro | |
+0 −1 | src/proto/edit.pro | |
+0 −1 | src/proto/ex_docmd.pro | |
+0 −1 | src/proto/getchar.pro | |
+0 −1 | src/proto/job.pro | |
+0 −1 | src/proto/list.pro | |
+0 −1 | src/proto/profiler.pro | |
+0 −1 | src/proto/spell.pro | |
+0 −2 | src/proto/vim9compile.pro | |
+0 −2 | src/proto/vim9script.pro | |
+0 −1 | src/proto/vim9type.pro | |
+1 −1 | src/spell.c | |
+1,114 −8 | src/strings.c | |
+36 −0 | src/testdir/test_excmd.vim | |
+12 −0 | src/testdir/test_vim9_builtin.vim | |
+8 −0 | src/testdir/test_writefile.vim | |
+8 −0 | src/version.c | |
+2 −2 | src/vim9compile.c | |
+146 −146 | src/vim9script.c | |
+7 −3 | src/vim9type.c | |
+1 −1 | src/window.c |