annotate etc/custom/right.xpm @ 4997:8800b5350a13

Move #'some, #'every to C, implementing them with mapcarX. src/ChangeLog addition: 2010-02-03 Aidan Kehoe <kehoea@parhasard.net> * fns.c (mapcarX): Accept a new argument, indicating whether the function is being called from #'some or #'every. Implement it. Discard any multiple values where that is appropriate. (Fmapconcat, FmapcarX, Fmapvector, Fmapcan, Fmapc, Fmap) (Fmap_into): Pass the new flag to mapcarX. (Fsome, Fevery): Move these functions here from cl-extra.el; implement them in terms of mapcarX. (maplist): Discard multiple values where appropriate. lisp/ChangeLog addition: 2010-02-03 Aidan Kehoe <kehoea@parhasard.net> * cl-extra.el (some, every): Move these functions to C. * cl-macs.el (notany, notevery): Add compiler macros for these functions, no longer proclaim them inline (which would involve specbinding that's not necessary with the compiler macros).
author Aidan Kehoe <kehoea@parhasard.net>
date Wed, 03 Feb 2010 20:26:47 +0000
parents 43dd3413c7c7
children 7910031dd78a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
155
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents:
diff changeset
1 /* XPM */
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents:
diff changeset
2 static char * right_xpm[] = {
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents:
diff changeset
3 "10 10 5 1",
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents:
diff changeset
4 " c Gray90",
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents:
diff changeset
5 ". c Gray90",
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents:
diff changeset
6 "X c none",
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents:
diff changeset
7 "o c Gray75",
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents:
diff changeset
8 "O c Gray40",
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents:
diff changeset
9 " .XXXXXXXX",
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents:
diff changeset
10 " ...XXXXXX",
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents:
diff changeset
11 " ....XXXX",
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents:
diff changeset
12 " oo....XX",
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents:
diff changeset
13 " oooo....",
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents:
diff changeset
14 " ooooOOOO",
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents:
diff changeset
15 " ooOOOOXX",
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents:
diff changeset
16 " OOOOXXXX",
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents:
diff changeset
17 " OOOXXXXXX",
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents:
diff changeset
18 " OXXXXXXXX"};