annotate etc/custom/option.xpm @ 5262:75bcb5bef459
Replace a doubled semi-colon with a single semi-colon, fns.c, for VS6's sake.
src/ChangeLog addition:
2010-09-07 Aidan Kehoe <kehoea@parhasard.net>
* fns.c (Freplace):
Replace an accidental double semi-colon with a single semi-colon,
hopefully fixing Vin's Visual Studio 6 build. (Visual Studio 2005
had no problem with it, oddly.)
author |
Aidan Kehoe <kehoea@parhasard.net> |
date |
Tue, 07 Sep 2010 17:03:46 +0100 |
parents |
5a88923fcbfe |
children |
7910031dd78a |
rev |
line source |
165
|
1 /* XPM */
|
|
2 static char *option[] = {
|
|
3 /* width height num_colors chars_per_pixel */
|
|
4 " 17 17 4 1",
|
|
5 /* colors */
|
|
6 ". c #000000",
|
|
7 "a c #a8b038",
|
|
8 "b c #f8f800",
|
|
9 "c s None c None",
|
|
10 /* pixels */
|
|
11 "ccccccccccccccccc",
|
|
12 "ccccccccccccccccc",
|
|
13 "cccccbbbbbbcccccc",
|
|
14 "ccccbbbbbbbbccccc",
|
|
15 "cccbbbaaaabbbcccc",
|
|
16 "ccbbbaaaaaabbbccc",
|
|
17 "cbbbaabbbaabbbbcc",
|
|
18 "cbbbaababaabbbbcc",
|
|
19 "cbbbbbbbaabbbbbcc",
|
|
20 "cbbbbbbaabbbbbbcc",
|
|
21 "cbbbbbbaabbbbbbcc",
|
|
22 "cbbbbbbbbbbbbbbcc",
|
|
23 "ccbbbbbaabbbbbccc",
|
|
24 "cccbbbbaabbbbcccc",
|
|
25 "ccccbbbbbbbbccccc",
|
|
26 "cccccbbbbbbcccccc",
|
|
27 "ccccccccccccccccc"
|
|
28 };
|