-
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.3625: illegal memory access when C-indenting * 8.2.3624: when renaming a terminal buffer status text is not updated * 8.2.3623: "$*" is expanded to "nonomatch" * 8.2.3622: "verbose pwd" shows confusing info * 8.2.3621: build failure * 8.2.3620: memory leak reported in libtlib
- 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.3619](https://github.com/vim/vim/commit/777175b0df8c5ec3cd30d19a2e887e661ac209c8): cannot use a lambda for 'operatorfunc'\n* [8.2.3618](https://github.com/vim/vim/commit/851c7a699ae00bdc14a4db874cf722b7b7393b53): getcwd() is unclear about how 'autochdir' is used\n* [8.2.3617](https://github.com/vim/vim/commit/0526815c15170a5926e1008600ec29d42d8b64c2): ":verbose pwd" does not mention 'autochdir' was applied\n* [8.2.3616](https://github.com/vim/vim/commit/3cad47038547e694cfa26ba39c399f610d2054bd): arglist test does not clear the argument list consistently\n* [8.2.3615](https://github.com/vim/vim/commit/818ff25cd1aabf60b9cd239da2f1328a959954f7): wrong indent in first line if re-formatting with indent expr | ||
* [8.2.3625](https://github.com/vim/vim/commit/2de9b7c7c8791da8853a9a7ca9c467867465b655): illegal memory access when C-indenting\n* [8.2.3624](https://github.com/vim/vim/commit/3ad695328f94e0197e84454f125c7f3464091d0c): when renaming a terminal buffer status text is not updated\n* [8.2.3623](https://github.com/vim/vim/commit/8b8d829faf04fe3706c04f7f7000054acd3254e7): "$\*" is expanded to "nonomatch"\n* [8.2.3622](https://github.com/vim/vim/commit/64be6aa3a54ecfe355d4a03e1200650c301e7f29): "verbose pwd" shows confusing info\n* [8.2.3621](https://github.com/vim/vim/commit/1d69ef410ab2adb0351d559ff9753d6cdd4befdf): build failure\n* [8.2.3620](https://github.com/vim/vim/commit/b3a29558eedac9979f5276ae914934b7b7cbe06b): memory leak reported in libtlib |
Submodule vim
updated
24 files
+0 −3 | runtime/doc/map.txt | |
+1 −1 | src/Make_cyg_ming.mak | |
+1 −1 | src/Make_mvc.mak | |
+122 −122 | src/Make_vms.mms | |
+146 −146 | src/Makefile | |
+1 −0 | src/alloc.c | |
+29 −0 | src/auto/configure | |
+5 −0 | src/buffer.c | |
+5 −5 | src/cindent.c | |
+3 −0 | src/config.h.in | |
+10 −0 | src/configure.ac | |
+1 −1 | src/ex_docmd.c | |
+11 −4 | src/os_unix.c | |
+1 −0 | src/proto/term.pro | |
+1 −0 | src/proto/terminal.pro | |
+22 −0 | src/term.c | |
+0 −0 | src/termdefs.h | |
+9 −0 | src/terminal.c | |
+8 −0 | src/testdir/test_autochdir.vim | |
+12 −0 | src/testdir/test_cindent.vim | |
+6 −0 | src/testdir/test_expand.vim | |
+12 −0 | src/testdir/test_terminal.vim | |
+12 −0 | src/version.c | |
+1 −1 | src/vim.h |