Mercurial > vim
annotate pixmaps/tb_jump.xpm @ 34567:7de5ae6a0518 v9.1.0182
patch 9.1.0182: Can define function with invalid name inside 'formatexpr'
Commit: https://github.com/vim/vim/commit/6a04bf5ee523b2d6d01d7290e356a30de219f465
Author: zeertzjq <zeertzjq@outlook.com>
Date: Sat Mar 16 09:39:06 2024 +0100
patch 9.1.0182: Can define function with invalid name inside 'formatexpr'
Problem: Can define function with invalid name inside 'formatexpr'.
Solution: Use goto instead of checking for did_emsg later.
(zeertzjq)
closes: #14209
Signed-off-by: zeertzjq <zeertzjq@outlook.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sat, 16 Mar 2024 09:45:04 +0100 |
parents | 3fc0f57ecb91 |
children |
rev | line source |
---|---|
7 | 1 /* XPM */ |
2 static char * tb_jump_xpm[] = { | |
3 /* width height ncolors cpp [x_hot y_hot] */ | |
4 "18 18 6 1 0 0", | |
5 /* colors */ | |
6 " s none m none c none", | |
7 ". m black c #888800", | |
8 "X s bottomShadowColor m black c #5D6069", | |
9 "o s iconColor6 m none c #FFFF00", | |
10 "O s iconColor1 m black c #000000", | |
11 "+ s topShadowColor m none c #DCDEE5", | |
12 /* pixels */ | |
13 " ", | |
14 " ", | |
15 " ", | |
16 " ", | |
17 " .............. ", | |
18 " .XooooooooooooOX", | |
19 " .XoooooooooooooOX", | |
20 ".Xo+X+ooooooooooOX", | |
21 ".ooXOXooooooooooOX", | |
22 "Xoo+X+ooooooooooOX", | |
23 "XOooooooooooooooOX", | |
24 " XOoooooooooooooOX", | |
25 " XOOOOOOOOOOOOOOX", | |
26 " XXXXXXXXXXXXXXX", | |
27 " ", | |
28 " ", | |
29 " ", | |
30 " "}; |