annotate etc/custom/right.xpm @ 4954:70e8a00896e9
fix an obscure crash reading from stream devices
-------------------- ChangeLog entries follow: --------------------
src/ChangeLog addition:
2010-01-27 Ben Wing <ben@xemacs.org>
* event-unixoid.c (read_event_from_tty_or_stream_desc):
Don't try to write one byte into a four-byte variable, leaving
the rest undefined. This is a recipe for crashing.
author |
Ben Wing <ben@xemacs.org> |
date |
Wed, 27 Jan 2010 00:44:03 -0600 |
parents |
43dd3413c7c7 |
children |
7910031dd78a |
rev |
line source |
155
|
1 /* XPM */
|
|
2 static char * right_xpm[] = {
|
|
3 "10 10 5 1",
|
|
4 " c Gray90",
|
|
5 ". c Gray90",
|
|
6 "X c none",
|
|
7 "o c Gray75",
|
|
8 "O c Gray40",
|
|
9 " .XXXXXXXX",
|
|
10 " ...XXXXXX",
|
|
11 " ....XXXX",
|
|
12 " oo....XX",
|
|
13 " oooo....",
|
|
14 " ooooOOOO",
|
|
15 " ooOOOOXX",
|
|
16 " OOOOXXXX",
|
|
17 " OOOXXXXXX",
|
|
18 " OXXXXXXXX"};
|