-
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.1651: spellfile code not completely tested * 8.2.1650: Vim9: result of && and || expression is not bool in script * 8.2.1649: GTK3: using old file chooser * 8.2.1648: Amiga: no common build file for Amiga (-like) systems * 8.2.1647: Vim9: result of expression with && and || is not a bool * 8.2.1646: Amiga: Unnecessary #include * 8.2.1645: GTK3: icons become broken images when resized * 8.2.1644: Vim9: cannot assign 1 and 0 to bool at script level * 8.2.1643: Vim9: :defcompile compiles dead functions * 8.2.1642: otions test fails * 8.2.1641: Vim9: cannot use 0 or 1 where a bool is expected * 8.2.1640: Amiga: missing header for getgrgid() * 8.2.1639: options window cannot be translated
- 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.1638](https://github.com/vim/vim/commit/8e9be208ea58149c4e522166a6194da18a2eced7): leaking memory when popup filter function can't be called\n* [8.2.1637](https://github.com/vim/vim/commit/c3516f7e4507c77424b94cb89071f6d0841f4e6a): Vim9: :put ={expr} does not work inside :def function\n* [8.2.1636](https://github.com/vim/vim/commit/6defa7bf0a8935cc44f3dc12e9c87bbb40f190b7): get stuck if a popup filter causes an error\n* [8.2.1635](https://github.com/vim/vim/commit/57ad94c5a9ee6f3626e1ec728519a8558a4346c8): no digraph for 0x2022 BULLET | ||
* [8.2.1651](https://github.com/vim/vim/commit/64e2db6dc6d7a013ff94ce302af8958cbd2704af): spellfile code not completely tested\n* [8.2.1650](https://github.com/vim/vim/commit/c1ec0422e43720d2e96627605532ee9806c0789f): Vim9: result of && and || expression is not bool in script\n* [8.2.1649](https://github.com/vim/vim/commit/3e4cc9671c5551b73f0176cab40e676ed72a1716): GTK3: using old file chooser\n* [8.2.1648](https://github.com/vim/vim/commit/a62372be1f73b69f9d4c9413ec816d773a16a0f5): Amiga: no common build file for Amiga (-like) systems\n* [8.2.1647](https://github.com/vim/vim/commit/4ed124cc6c0c55385c3b2fed9f9357baf42edbcc): Vim9: result of expression with && and || is not a bool\n* [8.2.1646](https://github.com/vim/vim/commit/33e3346322e40b2877f63f2f37398832c7017e2f): Amiga: Unnecessary #include\n* [8.2.1645](https://github.com/vim/vim/commit/81a4cf469a0f5c1603ac3130af9f011053854180): GTK3: icons become broken images when resized\n* [8.2.1644](https://github.com/vim/vim/commit/ba7c0d7b4ce03336b4aebe1959c1a8342fa6dbd4): Vim9: cannot assign 1 and 0 to bool at script level\n* [8.2.1643](https://github.com/vim/vim/commit/96f8f499ce51ea791d9b044c266f84380fa54848): Vim9: :defcompile compiles dead functions\n* [8.2.1642](https://github.com/vim/vim/commit/4507f6ada590fb6274b21c416190dfecb23dcf1b): otions test fails\n* [8.2.1641](https://github.com/vim/vim/commit/29a86ffee794bc1a0efde215c203cf9529047252): Vim9: cannot use 0 or 1 where a bool is expected\n* [8.2.1640](https://github.com/vim/vim/commit/f842cd9e285afb9d86c6f9bff400e5e576f873c0): Amiga: missing header for getgrgid()\n* [8.2.1639](https://github.com/vim/vim/commit/64075b0ab18449132ed01a07874fe1d1f3f356d4): options window cannot be translated |
Submodule vim
updated
22 files
+1 −1 | Filelist | |
+108 −105 | runtime/optwin.vim | |
+8 −23 | src/INSTALLami.txt | |
+201 −0 | src/Make_ami.mak | |
+0 −132 | src/Make_morph.mak | |
+7 −0 | src/eval.c | |
+14 −3 | src/evalvars.c | |
+27 −6 | src/gui_gtk.c | |
+6 −4 | src/gui_gtk_x11.c | |
+1 −0 | src/os_amiga.h | |
+2 −0 | src/proto/vim9type.pro | |
+5 −3 | src/structs.h | |
+66 −0 | src/testdir/test_spellfile.vim | |
+23 −0 | src/testdir/test_vim9_disassemble.vim | |
+1 −1 | src/testdir/test_vim9_expr.vim | |
+40 −3 | src/testdir/test_vim9_script.vim | |
+1 −1 | src/testdir/vim9.vim | |
+4 −2 | src/userfunc.c | |
+26 −4 | src/version.c | |
+38 −0 | src/vim9compile.c | |
+14 −1 | src/vim9script.c | |
+54 −10 | src/vim9type.c |