Mercurial > hg > xemacs-beta
annotate etc/custom/face.xpm @ 4742:4cf435fcebbc
Make #'letf not error if handed a #'values form.
lisp/ChangeLog addition:
2009-11-14 Aidan Kehoe <kehoea@parhasard.net>
* cl-macs.el (letf):
Check whether arguments to #'values are bound, and make them
unbound after evaluating BODY; document the limitations of this
macro.
tests/ChangeLog addition:
2009-11-14 Aidan Kehoe <kehoea@parhasard.net>
* automated/lisp-tests.el:
Don't call Known-Bug-Expect-Failure now that the particular letf
bug it tickled is fixed.
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Sat, 14 Nov 2009 11:43:09 +0000 |
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 }; |