annotate etc/custom/right.xpm @ 5003:6b6b0f8ab749
#'union doesn't preserve relative order; use #'delete-duplicates instead.
2010-02-07 Aidan Kehoe <kehoea@parhasard.net>
* setup-paths.el (paths-find-emacs-roots)
(paths-construct-info-path):
* packages.el (packages-find-installation-package-directories):
#'union doesn't guarantee that it will preserve the relative order
of elements in its arguments; use #'delete-duplicates
instead. Thank you for the bug reports, Robert Pluim, Stephen
Turnbull.
author |
Aidan Kehoe <kehoea@parhasard.net> |
date |
Sun, 07 Feb 2010 14:37:35 +0000 |
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"};
|