-
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.3318: Vim9: cannot ignore quotes in number at the command line * 8.2.3317: Vim9: No error for missing white space before return type * 8.2.3316: float test fails * 8.2.3315: cannot use single quote in a float number for readability * 8.2.3314: behavior of exists() in a :def function is unpredictable
- 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.3313](https://github.com/vim/vim/commit/9e2fa4bb9eb40a78a1ae1f67a4064651b5ce0aac): unused code in win\_exchange() and frame\_remove()\n* [8.2.3312](https://github.com/vim/vim/commit/e525bdda3aa29f0ffcb18d8d16903ebafc2b5881): Vim9: after "if false" line breaks in expression not skipped\n* [8.2.3311](https://github.com/vim/vim/commit/dae453f3397a26a53301d7327e6ed43e8b392035): Vim9: check for DO\_NOT\_FREE\_CNT is very slow\n* [8.2.3310](https://github.com/vim/vim/commit/4270d8b7626ff8a7006f6a09c89bc446a3f89d1e): Vim9: unpack assignment does not mention source of type error\n* [8.2.3309](https://github.com/vim/vim/commit/fbeefb1b87b0d52a095c08fee47b62d290bf4c33): Vim9: divide by zero causes a crash\n* [8.2.3308](https://github.com/vim/vim/commit/6ce46b99635877fb0a17c06a6f5625fbc1ffa6f4): Vim9: no runtime check for argument type with varargs only\n* [8.2.3307](https://github.com/vim/vim/commit/7de62623735d228c8f81f6ac8309fe4922822cb2): Vim9: :echoconsole cannot access local variables\n* [8.2.3306](https://github.com/vim/vim/commit/1b154ea121d8374a129c3e30d50fa9742cd5faa1): unexpected "No matching autocommands"\n* [8.2.3305](https://github.com/vim/vim/commit/84934998806408db3f3ecff7ac4c3980e0c2a96e): Vim9: :finally in skipped block not handled correctly\n* [8.2.3304](https://github.com/vim/vim/commit/c611941c606328740b6e9acc1191a5d97ace13e2): popup window title with wide characters is truncated\n* [8.2.3303](https://github.com/vim/vim/commit/3276f5846f7ad61f55175959ac21c1b4cf595352): some structures could be smaller\n* [8.2.3302](https://github.com/vim/vim/commit/d57a6bd98c9a57b766eadcc3f10e9c4169c788aa): Coverity is not run from github | ||
* [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 |
Submodule vim
updated
15 files
+30 −12 | runtime/doc/eval.txt | |
+1 −0 | runtime/doc/usr_41.txt | |
+4 −0 | src/errors.h | |
+10 −1 | src/evalfunc.c | |
+32 −2 | src/float.c | |
+3 −2 | src/json.c | |
+1 −1 | src/proto/float.pro | |
+20 −1 | src/testdir/test_float_func.vim | |
+24 −9 | src/testdir/test_vim9_builtin.vim | |
+21 −0 | src/testdir/test_vim9_func.vim | |
+17 −3 | src/typval.c | |
+8 −1 | src/userfunc.c | |
+10 −0 | src/version.c | |
+8 −4 | src/vim9compile.c | |
+1 −1 | src/viminfo.c |