diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-12-09 19:51:49 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-12-09 19:51:49 +0100 |
commit | 7089237885218eb8a19805bc2b75481c4efcd6ba (patch) | |
tree | 2ec157b8b735668a6a1f67246dd951cd92ded831 | |
parent | 73fd4988866c3adc15b5d093efdf5e8cf70d093d (diff) | |
download | vim-git-7089237885218eb8a19805bc2b75481c4efcd6ba.tar.gz |
patch 8.0.0128v8.0.0128
Problem: Display test fails on MS-Windows.
Solution: Set 'isprint' to "@".
-rw-r--r-- | src/testdir/test_display.vim | 2 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/src/testdir/test_display.vim b/src/testdir/test_display.vim index ba7b7d762..609e16c73 100644 --- a/src/testdir/test_display.vim +++ b/src/testdir/test_display.vim @@ -18,6 +18,8 @@ function! Test_display_foldcolumn() new vnew vert resize 25 + call assert_equal(25, winwidth(winnr())) + set isprint=@ 1put='e more noise blah blah‚ more stuff here' diff --git a/src/version.c b/src/version.c index 39538a0c8..9b9705e0a 100644 --- a/src/version.c +++ b/src/version.c @@ -765,6 +765,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 128, +/**/ 127, /**/ 126, |