comparison src/drawscreen.c @ 20201:304015471ae9 v8.2.0656

patch 8.2.0656: MS-Windows: redrawing right screen edge may not be needed Commit: https://github.com/vim/vim/commit/7ed8f59ae09278c666f1b43488351f9450097372 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Apr 28 20:44:42 2020 +0200 patch 8.2.0656: MS-Windows: redrawing right screen edge may not be needed Problem: MS-Windows: redrawing right screen edge may not be needed. Solution: Check the build version. (Nobuhiro Takasaki, closes https://github.com/vim/vim/issues/6002)
author Bram Moolenaar <Bram@vim.org>
date Tue, 28 Apr 2020 20:45:04 +0200
parents 3ff714d765ba
children 5f4a188dead8
comparison
equal deleted inserted replaced
20200:84fc9bacfd32 20201:304015471ae9
2437 2437
2438 // End of loop over all window lines. 2438 // End of loop over all window lines.
2439 2439
2440 #ifdef FEAT_VTP 2440 #ifdef FEAT_VTP
2441 // Rewrite the character at the end of the screen line. 2441 // Rewrite the character at the end of the screen line.
2442 if (use_vtp()) 2442 // See the version that was fixed.
2443 if (use_vtp() && get_conpty_fix_type() < 1)
2443 { 2444 {
2444 int i; 2445 int i;
2445 2446
2446 for (i = 0; i < Rows; ++i) 2447 for (i = 0; i < Rows; ++i)
2447 if (enc_utf8) 2448 if (enc_utf8)