Mercurial > vim
annotate pixmaps/tb_new.xpm @ 34834:d3127b18fe1e v9.1.0286
patch 9.1.0286: Vim9: E1027 with defcompile for abstract methods
Commit: https://github.com/vim/vim/commit/1af0fbf955f799392f614bc38f9d2fcbd9960526
Author: Yegappan Lakshmanan <yegappan@yahoo.com>
Date: Tue Apr 9 21:39:27 2024 +0200
patch 9.1.0286: Vim9: E1027 with defcompile for abstract methods
Problem: Vim9: E1027 with defcompile for abstract methods with
non-void return types, but still compiles it
(zzzyxwvut)
Solution: Don't compile abstract methods
(Yegappan Lakshmanan)
fixes: #14443
closes: #14447
Signed-off-by: Yegappan Lakshmanan <yegappan@yahoo.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Tue, 09 Apr 2024 21:45:04 +0200 |
parents | 3fc0f57ecb91 |
children |
rev | line source |
---|---|
7 | 1 /* XPM */ |
2 static char * tb_new_xpm[] = { | |
3 /* width height ncolors cpp [x_hot y_hot] */ | |
4 "18 18 5 1 0 0", | |
5 /* colors */ | |
6 " s none m none c none", | |
7 ". s bottomShadowColor m black c #5D6069", | |
8 "X s iconColor2 m none c #FFFFFF", | |
9 "o s iconColor1 m black c #000000", | |
10 "O s topShadowColor m none c #DCDEE5", | |
11 /* pixels */ | |
12 " . .X. ", | |
13 " X. .X. X.", | |
14 " ooooooo.X.oXoX.X", | |
15 " oOOOOOOOoXXXXo..", | |
16 " oOOOOOOOXXXXXXXX", | |
17 " oOOXOOOOoXoXXo..", | |
18 " oOXXOOO.OXoXoX ", | |
19 " oOOOOO.OOXoX..X ", | |
20 " oOOOOOOOOXoX. .X", | |
21 " oOOOOOOOOXo. .", | |
22 " oOOOOOOOOXo. ", | |
23 " oOOOOOOOOXo. ", | |
24 " oOOOOOOOOXo. ", | |
25 " oOOOOOOOOXo. ", | |
26 " oOOOOOOOOXo. ", | |
27 " oXXXXXXXXXo. ", | |
28 " ooooooooooo. ", | |
29 " .......... "}; |