Mercurial > vim
annotate pixmaps/tb_open.xpm @ 8310:aec8f8ce8e4c v7.4.1447
commit https://github.com/vim/vim/commit/d6051b5eb83687f60bb4a2f3d5cd23fe8b290eb4
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Feb 28 15:49:03 2016 +0100
patch 7.4.1447
Problem: Memory leak when using ch_read(). (Dominique Pelle)
No log message when stopping a job and a few other situations.
Too many "Nothing to read" messages. Channels are not freed.
Solution: Free the listtv. Add more log messages. Remove "Nothing to read"
message. Remove the channel from the job when its refcount
becomes zero.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sun, 28 Feb 2016 16:00:05 +0100 |
parents | 3fc0f57ecb91 |
children |
rev | line source |
---|---|
7 | 1 /* XPM */ |
2 static char * tb_open_xpm[] = { | |
3 /* width height ncolors cpp [x_hot y_hot] */ | |
4 "18 18 7 1 0 0", | |
5 /* colors */ | |
6 " s none m none c none", | |
7 ". s iconColor1 m black c #000000", | |
8 "X s bottomShadowColor m black c #5D6069", | |
9 "o s iconColor2 m none c #FFFFFF", | |
10 "O s iconGray1 m none c #dedede", | |
11 "+ s iconGray5 m black c #737373", | |
12 "@ s iconGray3 m none c #adadad", | |
13 /* pixels */ | |
14 " ", | |
15 " .........X ", | |
16 " .oooooo.o.X ", | |
17 " .oooooo.oo.X ", | |
18 " .oooooo....X ", | |
19 " ...ooooooooo... ", | |
20 " .O.OOOOOOOOo.+. ", | |
21 ".............O.+.X", | |
22 ".oooooooooooo..+.X", | |
23 " .o@@@@@@@@@@+.+.X", | |
24 " .o@@@@@@@@@@@.+.X", | |
25 " .o@@@@@@@@@@+..X", | |
26 " .o@@@@@@@@@@@..X", | |
27 " .o+++++++++++.X", | |
28 " ..............X", | |
29 " XXXXXXXXXXXXX", | |
30 " ", | |
31 " "}; |