blob: a76ec7f77e541aa70a332384c8ffe8d7520d5e75 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
To: vim_dev@googlegroups.com
Subject: Patch 8.1.0938
Fcc: outbox
From: Bram Moolenaar <Bram@moolenaar.net>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
------------
Patch 8.1.0938
Problem: Background color is wrong in MS-Windows console when not using VTP.
Solution: Use g_attrCurrent. (Nobuhiro Takasaki, closes #3987)
Files: src/os_win32.c
*** ../vim-8.1.0937/src/os_win32.c 2019-02-16 16:47:58.126925258 +0100
--- src/os_win32.c 2019-02-17 14:08:22.838683073 +0100
***************
*** 6031,6037 ****
{
fill.Char.AsciiChar = ' ';
! fill.Attributes = g_attrDefault;
set_console_color_rgb();
--- 6031,6040 ----
{
fill.Char.AsciiChar = ' ';
! if (!USE_VTP)
! fill.Attributes = g_attrCurrent;
! else
! fill.Attributes = g_attrDefault;
set_console_color_rgb();
***************
*** 6085,6091 ****
{
fill.Char.AsciiChar = ' ';
! fill.Attributes = g_attrDefault;
set_console_color_rgb();
--- 6088,6097 ----
{
fill.Char.AsciiChar = ' ';
! if (!USE_VTP)
! fill.Attributes = g_attrCurrent;
! else
! fill.Attributes = g_attrDefault;
set_console_color_rgb();
*** ../vim-8.1.0937/src/version.c 2019-02-17 13:53:31.600227794 +0100
--- src/version.c 2019-02-17 14:10:41.777818565 +0100
***************
*** 781,782 ****
--- 781,784 ----
{ /* Add new patch number below this line */
+ /**/
+ 938,
/**/
--
Never under any circumstances take a sleeping pill
and a laxative on the same night.
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
\\\ an exciting new programming language -- http://www.Zimbu.org ///
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|