Mercurial > hg > xemacs-beta
annotate etc/gnu.xpm @ 1346:01c57eb70ae9
[xemacs-hg @ 2003-03-09 02:27:27 by ben]
To: xemacs-patches@xemacs.org
i.c: Sleep between calls to check for I/O, since these calls are non-blocking.
behavior.el: Allow other keywords for forward compatibility.
cl-macs.el: Rewrite to eliminate byte-compiler warning when `return' is used
without `finally'.
cmdloop.el: Avoid truncated error messages for `end-of-file' and the like.
cmdloop.el: Avoid char-int error after syncing.
files.el: Eliminate byte-compile warnings.
printer.el: Fix line-width calculations.
#### This used to work. Someone's changes (perhaps by
Michael Sperber?) seem to have messed something up.
simple.el: Use new clear-left-side functions to avoid messages ending up on
the same line as other output.
xemacs.mak: Add override for info/ as well when separate source/build dirs.
xemacs.mak: Order sections in main build process and add comments. Add
additional dependencies to try and prevent later steps from
happening when failures in earlier steps have occurred.
Makefile.in.in: Order sections in main build process and add comments. Add
additional dependencies to try and prevent later steps from
happening when failures in earlier steps have occurred.
alloc.c: Don't arbitrarily clear Vconfigure_info_directory since it
messes up separate build/source dirs.
console.c, console.h, device-msw.c, device.c: Add accidentally omitted msprinter console and data descriptions.
print.c, console-msw.c: Add clear-left-side functionality to help keep stdio/stderr
output from separate sources on separate lines. Generalize
the different kinds of debugging output. Add dpa().
profile.c: Add better docs on Unix/Windows differences.
regex.c: Fix problems with rel-alloc compilation caused by previous patch.
emacs.c: Seg fault rather than abort on Cygwin, since gdb doesn't trap
aborts properly.
console-gtk-impl.h, console-gtk.h, console-msw.h, console-x-impl.h, console-x.h, dialog-gtk.c, dialog-x.c, event-msw.c, frame-gtk.c, frame-x.c, frameslots.h, glyphs-gtk.c, glyphs-x.c, gui-gtk.c, gui-x.c, inline.c, menubar-gtk.c, menubar-msw.c, menubar-x.c, scrollbar-gtk.c, scrollbar-x.c, ui-gtk.c: Delete popup-data object. Delete menubar_data field from frames,
since its usage is frame-specific. Delete menubar-msw.h,
gui-x.h, gui-gtk.h. Clean up handling of lwlib callback data
GCPRO'ing and add missing GCPRO recomputation in widget code.
author | ben |
---|---|
date | Sun, 09 Mar 2003 02:27:46 +0000 |
parents | 376386a54a3c |
children |
rev | line source |
---|---|
0 | 1 /* XPM */ |
2 /*****************************************************************************/ | |
3 /* GNU Emacs bitmap conv. to pixmap by Przemek Klosowski (przemek@nist.gov) */ | |
4 /*****************************************************************************/ | |
5 static char * image_name [] = { | |
6 /**/ | |
7 "50 50 7 1", | |
8 /**/ | |
9 " s mask c none", | |
10 "B c blue", | |
11 "x c black", | |
12 ": c sandy brown", | |
13 "+ c saddle brown", | |
14 "' c grey", | |
15 ". c white", | |
16 " ", | |
17 " ", | |
18 " x ", | |
19 " :x ", | |
20 " :::x ", | |
21 " ::x ", | |
22 " x ::x ", | |
23 " x: xxx :::x ", | |
24 " x: xxx xxx:xxx x::x ", | |
25 " x:: xxxx::xxx:::::xx x::x ", | |
26 " x:: x:::::::xx::::::xx x::x ", | |
27 " x:: xx::::::::x:::::::xx xx::x ", | |
28 " x:: xx::::::::::::::::::x xx::xx ", | |
29 " x::x xx:::::xxx:::::::xxx:xxx xx:::xx ", | |
30 " x:::x xx:::::xx...xxxxxxxxxxxxxxx:::xx ", | |
31 " x:::x xx::::::xx..xxx...xxxx...xxxxxxxx ", | |
32 " x:::x x::::::xx.xxx.......x.x.......xxxx ", | |
33 " x:::xx x:::x::xx.xx..........x.xx.........x ", | |
34 " x::::xx::xx:::x.xx....''''x'x'x''.xxx.....x ", | |
35 " xx::::xxxx::xx.xx.xxxx.'''''''.xxx xxxx ", | |
36 " xx::::::::xx..x.xxx..'''''''''.xx ", | |
37 " xxx:::::xxx..xx.xx.xx.xxx.'''''.xx ", | |
38 " xxx::xx...xx.xx.BBBB..xx''''''xx ", | |
39 " xxxx.....xx.xxBB:BB.xx'''''''xx ", | |
40 " xx.....xx...x.BBBx.xxx''''''xx ", | |
41 " x....xxxx..xx...xxx''''''''''xx ", | |
42 " x..xxxxxx..x.......x..''''''''xx ", | |
43 " x.x xxx.x.x.x...xxxx.'''''''''xx ", | |
44 " x xxx.x.x.xx...xx..'''''''''xx ", | |
45 " xx.x..x.x.xx........''''''''x ", | |
46 " xx'.xx.x.x.x.x.......'''''''''x ", | |
47 " xx'..xxxx..x...x.......'''''''x ", | |
48 " xx''.xx.x..xx...x.......'''.xxx ", | |
49 " xx''..x.x.x.x.x.xx.xxxxx.'.xx+xx ", | |
50 " xx''..x.xx..xx.x.x.x+++xxxxx+++x ", | |
51 " xx'''.x..xxx.x.x.x.x+++++xxx+xxx ", | |
52 " xx''.xx..x..xx.xxxx++x+++x++xxx ", | |
53 " xx''..xx.xxx.xxx.xxx++xx+x++xx ", | |
54 " xx'''.xx.xx..xx.xxxx++x+++xxx ", | |
55 " xx'''.xxx.xx.xxxxxxxxx++++xxx ", | |
56 " xx''...xx.xx.xxxxxx++xxxxxxx ", | |
57 " xx''''..x..xxx..xxxx+++++xx ", | |
58 " xx''''..x..xx..xxxx++++xx ", | |
59 " xxx'''''x.xx.xxxxxxxxxxx ", | |
60 " xxx'''''..xxx xxxxx ", | |
61 " xxxx''''xxxx ", | |
62 " xxx'''xxx ", | |
63 " xxxxx ", | |
64 " ", | |
65 " " | |
66 }; | |
67 |