annotate etc/custom/down.xpm @ 4793:8b50bee3c88c
Remove attempted support for 1996-era emacs without self-quoting keywords.
lisp/ChangeLog addition:
2009-12-19 Aidan Kehoe <kehoea@parhasard.net>
* cl-macs.el (cl-do-arglist):
* cl-compat.el (keyword-of):
Remove support in our generated code for emacs versions where
keywords are not self-quoting.
src/ChangeLog addition:
2009-12-19 Aidan Kehoe <kehoea@parhasard.net>
* symbols.c (reject_constant_symbols):
Indicate that accepting attempted modification of keywords is a
temporary thing.
author |
Aidan Kehoe <kehoea@parhasard.net> |
date |
Sat, 19 Dec 2009 18:10:20 +0000 |
parents |
43dd3413c7c7 |
children |
7910031dd78a |
rev |
line source |
155
|
1 /* XPM */
|
|
2 static char * down_xpm[] = {
|
|
3 "10 10 5 1",
|
|
4 " c Gray90",
|
|
5 ". c Gray90",
|
|
6 "X c Gray40",
|
|
7 "o c none",
|
|
8 "O c Gray75",
|
|
9 " ",
|
|
10 ".. XX",
|
|
11 "o..OOOOXXo",
|
|
12 "o..OOOOXXo",
|
|
13 "oo..OOXXoo",
|
|
14 "oo..OOXXoo",
|
|
15 "ooo..XXooo",
|
|
16 "ooo..XXooo",
|
|
17 "oooo.Xoooo",
|
|
18 "oooo.Xoooo"};
|