Mercurial > vim
annotate runtime/vim32x32.xpm @ 33605:b2075b2d2cca v9.0.2046
patch 9.0.2046: win32,python: warning that MS_WIN64 got re-defined
Commit: https://github.com/vim/vim/commit/436f39390f0a5d4c4877edcf69b469987d706f3c
Author: Ken Takata <kentkt@csc.jp>
Date: Wed Oct 18 11:53:30 2023 +0200
patch 9.0.2046: win32,python: warning that MS_WIN64 got re-defined
Problem: win32,python: warning that MS_WIN64 got re-defined
Solution: Do not define MS_WIN64, as it is no longer used
Suppress the following warning:
```
In file included from C:/Python312-64/include/Python.h:12,
from if_python3.c:79:
C:/Python312-64/include/pyconfig.h:240: warning: "MS_WIN64" redefined
240 | #define MS_WIN64
|
<command-line>: note: this is the location of the previous definition
```
`MS_WIN64` is not defined in `Make_mvc.mak` either.
This should be able to be safely removed.
closes: #13370
Signed-off-by: Christian Brabandt <cb@256bit.org>
Co-authored-by: Ken Takata <kentkt@csc.jp>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Wed, 18 Oct 2023 12:00:08 +0200 |
parents | 3fc0f57ecb91 |
children | 8f04cf65ecff |
rev | line source |
---|---|
7 | 1 /* XPM */ |
2 static char * vim32x32[] = { | |
3 "32 32 8 1", | |
4 " c None", | |
5 ". c #000000", | |
6 "+ c #000080", | |
7 "@ c #008000", | |
8 "# c #00FF00", | |
9 "$ c #808080", | |
10 "% c #C0C0C0", | |
11 "& c #FFFFFF", | |
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 " .. "}; |