-
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.0.0271: may get ml_get error when :tcldo deletes lines * 8.0.0270: may get ml_get error when :rubydo deletes lines * 8.0.0269: may get ml_get error when :perldo deletes lines * 8.0.0268: may get ml_get error when :luado deletes lines * 8.0.0267: channel test sometimes fails on Mac * 8.0.0266: compiler warning for using uninitialized variable * 8.0.0265: may get ml_get error when :pydo deletes lines * 8.0.0264: memory error reported by ubsan * 8.0.0263: Farsi support is not tested enough * 8.0.0262: Farsi support is barely tested * 8.0.0261: not enough test coverage for eval functions * 8.0.0260: build fails with tiny features * 8.0.0259: tab commands do not handle count correctly * 8.0.0258: mksession test leaves file behind
- 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.0.0257: test file missing in distribution\n* Update runtime files.\n* 8.0.0256: missing changes to one file breaks test\n* 8.0.0255: setpos() does not use the buffer argument for all marks\n* 8.0.0254: error message of assert functions is sometimes incomplete\n* 8.0.0253: error when loading session if winminheight is 2\n* 8.0.0252: not properly recognizing word characters between 128 and 255\n* 8.0.0251: not easy to select Python 2 or 3\n* 8.0.0250: virtcol() does not work well for multi-byte characters | ||
* 8.0.0271: may get ml_get error when :tcldo deletes lines\n* 8.0.0270: may get ml_get error when :rubydo deletes lines\n* 8.0.0269: may get ml_get error when :perldo deletes lines\n* 8.0.0268: may get ml_get error when :luado deletes lines\n* 8.0.0267: channel test sometimes fails on Mac\n* 8.0.0266: compiler warning for using uninitialized variable\n* 8.0.0265: may get ml_get error when :pydo deletes lines\n* 8.0.0264: memory error reported by ubsan\n* 8.0.0263: Farsi support is not tested enough\n* 8.0.0262: Farsi support is barely tested\n* 8.0.0261: not enough test coverage for eval functions\n* 8.0.0260: build fails with tiny features\n* 8.0.0259: tab commands do not handle count correctly\n* 8.0.0258: mksession test leaves file behind |
Submodule vim
updated
24 files
+4 −0 | src/Makefile | |
+3 −4 | src/edit.c | |
+11 −1 | src/evalfunc.c | |
+15 −14 | src/ex_cmds.h | |
+205 −84 | src/ex_docmd.c | |
+351 −367 | src/farsi.c | |
+9 −0 | src/if_lua.c | |
+5 −1 | src/if_perl.xs | |
+14 −1 | src/if_py_both.h | |
+5 −0 | src/if_ruby.c | |
+4 −1 | src/if_tcl.c | |
+5 −1 | src/testdir/Make_all.mak | |
+1 −0 | src/testdir/runtest.vim | |
+49 −0 | src/testdir/test_farsi.vim | |
+145 −1 | src/testdir/test_functions.vim | |
+22 −0 | src/testdir/test_lua.vim | |
+7 −7 | src/testdir/test_mksession.vim | |
+15 −0 | src/testdir/test_perl.vim | |
+24 −0 | src/testdir/test_python2.vim | |
+24 −0 | src/testdir/test_python3.vim | |
+17 −0 | src/testdir/test_ruby.vim | |
+231 −11 | src/testdir/test_tabpage.vim | |
+23 −0 | src/testdir/test_tcl.vim | |
+28 −0 | src/version.c |