Mercurial > hg > xemacs-beta
annotate etc/custom/face.xpm @ 4956:3461165c79be
fix compile errors due to mismatched string pointer types
-------------------- ChangeLog entries follow: --------------------
src/ChangeLog addition:
2010-01-28 Ben Wing <ben@xemacs.org>
* device-x.c (x_init_device):
* emodules.c (emodules_load):
* emodules.c (emodules_doc_subr):
* emodules.c (emodules_doc_sym):
* emodules.h:
Make the externally-called functions emodules_doc_sym() and
emodules_doc_subr() take Ascbyte * pointers since they're usually
passed string constants and we can't guarantee the encoding if
it's not ASCII. Fix pointer type in calls to dll_variable(), etc.
author | Ben Wing <ben@xemacs.org> |
---|---|
date | Thu, 28 Jan 2010 01:15:10 -0600 |
parents | 5a88923fcbfe |
children | 7910031dd78a |
rev | line source |
---|---|
165 | 1 /* XPM */ |
2 static char *face[] = { | |
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 "cccbbbbbbbbbbcccc", | |
16 "ccbbbbbbbbbbbbccc", | |
17 "cbbaaabbbbaaabbcc", | |
18 "cbbbbbbbbbbbbbbcc", | |
19 "cbbbbbbaabbbbbbcc", | |
20 "cbbbbbbaabbbbbbcc", | |
21 "cbbbbbbaabbbbbbcc", | |
22 "cbbbbbaaaabbbbbcc", | |
23 "ccbbabbbbbbabbccc", | |
24 "cccbbabbbbabbcccc", | |
25 "ccccbbaaaabbccccc", | |
26 "cccccbbbbbbcccccc", | |
27 "ccccccccccccccccc" | |
28 }; |