-
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.4072: Vim9: compiling function fails when autoload is not loaded * 8.2.4071: Vim9: no detection of return in try/endtry * 8.2.4070: using uninitialized memory when reading empty file * 8.2.4069: Vim9: import test fails on MS-Windows * 8.2.4068: Vim9: import test fails * 8.2.4067: Vim9: cannot call imported function with :call * 8.2.4066: Vim9: imported autoload script loaded again
- 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.4065](https://github.com/vim/vim/commit/3cf21b305104e91a28e4ce3a473672b2e88a9469): computation overflow with large cound for :yank\n* [8.2.4064](https://github.com/vim/vim/commit/2284f6cca384e0ccc352bfec7277dc26386cac3d): foam files are not detected\n* [8.2.4063](https://github.com/vim/vim/commit/b8822442d716df0230c79531132e530e95cc17e3): Vim9: exported function in autoload script not found\n* [8.2.4062](https://github.com/vim/vim/commit/0bbca540f7377889e2154aa5731f6eeffcb5c0cc): match highlighting of tab too short\n* [8.2.4061](https://github.com/vim/vim/commit/0d47ad40274ed9c7ace636b2a4063182c905a2b4): codecov bash script is deprecated\n* [8.2.4060](https://github.com/vim/vim/commit/d6f27c66cca32b93fcf8024b1bad1618946bbbea): win\_execute() slow on systems where getcwd()/chdir() is slow\n* [8.2.4059](https://github.com/vim/vim/commit/19db9e6ba710ca32f0f5e0c2ca2ba69f8228b833): Vim9: an expression of a map cannot access script-local items | ||
* [8.2.4072](https://github.com/vim/vim/commit/d041f4208b0a2149e9d41f6443aa1c14c076a411): Vim9: compiling function fails when autoload is not loaded\n* [8.2.4071](https://github.com/vim/vim/commit/53c296112edd8471eb63afbca03f96bad164c813): Vim9: no detection of return in try/endtry\n* [8.2.4070](https://github.com/vim/vim/commit/f5d639a8af719eb8ecb141b5c0890627e4d83134): using uninitialized memory when reading empty file\n* [8.2.4069](https://github.com/vim/vim/commit/5d9826973d9f4c6ffbb5648676bb628660c62906): Vim9: import test fails on MS-Windows\n* [8.2.4068](https://github.com/vim/vim/commit/f479cac084c7ddd9f20944c8978d39f3ef092868): Vim9: import test fails\n* [8.2.4067](https://github.com/vim/vim/commit/f111cdfae6edf697390e0d9a85082a6526b03da6): Vim9: cannot call imported function with :call\n* [8.2.4066](https://github.com/vim/vim/commit/17d36cbcd36d944c744ef68afa971718959b2111): Vim9: imported autoload script loaded again |
Submodule vim
updated
15 files
+2 −2 | src/eval.c | |
+1 −1 | src/filepath.c | |
+3 −2 | src/scriptfile.c | |
+7 −0 | src/testdir/test_eval_stuff.vim | |
+73 −3 | src/testdir/test_vim9_import.vim | |
+58 −1 | src/testdir/test_vim9_script.vim | |
+24 −0 | src/userfunc.c | |
+14 −0 | src/version.c | |
+2 −0 | src/vim9.h | |
+11 −0 | src/vim9cmds.c | |
+3 −2 | src/vim9compile.c | |
+10 −0 | src/vim9execute.c | |
+23 −1 | src/vim9expr.c | |
+2 −2 | src/vim9instr.c | |
+26 −10 | src/vim9script.c |