-
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.3802: terminal in two windows test fails on some systems * 8.2.3801: if a terminal shows in two windows, only one is redrawn * 8.2.3800: when cross compiling the output of "uname" cannot be set * 8.2.3799: edit test hangs or fails * 8.2.3798: a :def callback function postpones an error message * 8.2.3797: no good reason to limit the message history in tiny version * 8.2.3796: the funcexe_T struct members are not named consistently * 8.2.3795: too many #ifdefs * 8.2.3794: Vim9: cannot find script-local func using "s:"
- 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.3793](https://github.com/vim/vim/commit/ef082e12df2cafe177b2ac9f6922393223ccf83b): using "g:Func" as a funcref does not work in script context\n* [8.2.3792](https://github.com/vim/vim/commit/04ef1fb13d200f770952e670357dddadb6210dd4): setting \*func options insufficiently tested\n* [8.2.3791](https://github.com/vim/vim/commit/d2439e0443ee26931ab93874c05cc7f57e9af93d): build error with +cindent but without +smartindent\n* [8.2.3790](https://github.com/vim/vim/commit/3bb79dc191a1dec14606b1b94b968a6808906700): test for term\_gettitle() fails in some environments\n* [8.2.3789](https://github.com/vim/vim/commit/fa9a8e0fd1143d2b47611c6cc13e32f6283448a4): Test\_window\_minimal\_size can fail on a slow machine\n* [8.2.3788](https://github.com/vim/vim/commit/6ae8fae8696623b527c7fb22567f6a3705b2f0dd): lambda for option that is a function may be freed\n* [8.2.3787](https://github.com/vim/vim/commit/6e371ecb27227ff8fedd8561d0f3880a17576848): no proper formatting of a C line comment after a statement\n* [Use text area for environment in the bug template.](https://github.com/vim/vim/commit/9a4ec5a62632af040c278a189e256043740f5c7f)\n* [Update issue template.](https://github.com/vim/vim/commit/4e30b5c3bc83fe6a87f4d50720638e8bb4e16428) | ||
* [8.2.3802](https://github.com/vim/vim/commit/0407d270342d363c6297a7556cd904b4c434df54): terminal in two windows test fails on some systems\n* [8.2.3801](https://github.com/vim/vim/commit/3194e5bf87f8e08f519b947a03c46677616cd7e3): if a terminal shows in two windows, only one is redrawn\n* [8.2.3800](https://github.com/vim/vim/commit/6840a0ffe8d27a8773a500ba17550cdf2ad12cbc): when cross compiling the output of "uname" cannot be set\n* [8.2.3799](https://github.com/vim/vim/commit/80d60910ff493f7b8ea52156e4c7df7e70a348c6): edit test hangs or fails\n* [8.2.3798](https://github.com/vim/vim/commit/3b309f11db7904efcae0177c2825597042c07427): a :def callback function postpones an error message\n* [8.2.3797](https://github.com/vim/vim/commit/1e78deb0779bc403a914712f0842a65d2949dfdf): no good reason to limit the message history in tiny version\n* [8.2.3796](https://github.com/vim/vim/commit/851f86b951cdd67ad9cf3149e46169d1375c8d82): the funcexe\_T struct members are not named consistently\n* [8.2.3795](https://github.com/vim/vim/commit/739f13a55b4982efb37ebc9282e7f79975fff982): too many #ifdefs\n* [8.2.3794](https://github.com/vim/vim/commit/33b968dc60c5fa39451098e680c7559ebc65d1a7): Vim9: cannot find script-local func using "s:" |
Submodule vim
updated
31 files
+1 −2 | runtime/doc/message.txt | |
+0 −7 | runtime/doc/motion.txt | |
+1 −1 | runtime/doc/various.txt | |
+55 −22 | src/auto/configure | |
+0 −2 | src/buffer.c | |
+0 −4 | src/change.c | |
+48 −22 | src/configure.ac | |
+7 −0 | src/drawscreen.c | |
+18 −18 | src/eval.c | |
+1 −15 | src/evalfunc.c | |
+0 −6 | src/ex_docmd.c | |
+4 −14 | src/feature.h | |
+6 −6 | src/list.c | |
+1 −25 | src/mark.c | |
+2 −8 | src/normal.c | |
+1 −0 | src/proto/terminal.pro | |
+3 −3 | src/regexp.c | |
+9 −13 | src/structs.h | |
+19 −5 | src/terminal.c | |
+6 −0 | src/testdir/dumps/Test_opfunc_error.dump | |
+0 −4 | src/testdir/test_changelist.vim | |
+0 −4 | src/testdir/test_jumplist.vim | |
+0 −2 | src/testdir/test_normal.vim | |
+29 −0 | src/testdir/test_terminal.vim | |
+60 −10 | src/testdir/test_vim9_func.vim | |
+1 −3 | src/undo.c | |
+56 −45 | src/userfunc.c | |
+18 −4 | src/version.c | |
+3 −3 | src/vim9execute.c | |
+0 −20 | src/viminfo.c | |
+0 −6 | src/window.c |