-
Notifications
You must be signed in to change notification settings - Fork 243
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 8.2.2897: Vim9: can use reserved words at the script level * 8.2.2896: spellfile functionality not fully tested * 8.2.2895: Vim9: random characters appear in some error messages * 8.2.2894: MS-Windows: using enc_locale() for strftime() might not work * 8.2.2893: multi-byte text in popup title shows up wrong * 8.2.2892: error message contains random characters
- 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.2891](https://github.com/vim/vim/commit/543467136f001708f4c63376ac5d18adde82db30): cannot build with Perl 5.34 | ||
* [8.2.2897](https://github.com/vim/vim/commit/d0edaf9dc253e619ccc321ceaac321aee11c1ea5): Vim9: can use reserved words at the script level\n* [8.2.2896](https://github.com/vim/vim/commit/dc3275a1ac73b6c4d0c9d2e238ea80b477705b6f): spellfile functionality not fully tested\n* [8.2.2895](https://github.com/vim/vim/commit/4ac198c61cb3097d4839d5a697cc8b2b256ac575): Vim9: random characters appear in some error messages\n* [8.2.2894](https://github.com/vim/vim/commit/2c4a1d0a619b0f1e0f7dac98681da6fee58c6a44): MS-Windows: using enc\_locale() for strftime() might not work\n* [8.2.2893](https://github.com/vim/vim/commit/bc869874fedf094129831836f131c64f10d98854): multi-byte text in popup title shows up wrong\n* [8.2.2892](https://github.com/vim/vim/commit/89dcb4dce369de22fba13b9c3c63f11f8d42650b): error message contains random characters |
Submodule vim
updated
13 files
+14 −8 | src/eval.c | |
+32 −0 | src/message_test.c | |
+20 −8 | src/popupwin.c | |
+1 −0 | src/proto/vim9script.pro | |
+10 −0 | src/testdir/dumps/Test_popupwin_multibytetitle.dump | |
+5 −0 | src/testdir/test_popupwin.vim | |
+66 −0 | src/testdir/test_spellfile.vim | |
+7 −0 | src/testdir/test_vim9_assign.vim | |
+58 −2 | src/testdir/test_vim9_expr.vim | |
+15 −1 | src/time.c | |
+12 −0 | src/version.c | |
+3 −18 | src/vim9compile.c | |
+24 −2 | src/vim9script.c |