Mercurial > hg > xemacs-beta
annotate etc/recycle2.xpm @ 5070:b0f4adffca7d
fix so that CL docstrings (with &key, etc.) handled properly
-------------------- ChangeLog entries follow: --------------------
lisp/ChangeLog addition:
2010-02-23 Ben Wing <ben@xemacs.org>
* autoload.el:
* autoload.el (make-autoload):
* cl-macs.el (cl-function-arglist):
* cl-macs.el (cl-transform-lambda):
Don't add argument list with the tag "Common Lisp lambda list:";
instead add in "standard" form using "arguments:" and omitting the
function name. Add an arg to `cl-function-arglist' to omit the
name and use it in autoload.el instead of just hacking it off.
* help.el:
* help.el (function-arglist):
* help.el (function-documentation-1): New.
Extract out common code to recognize and/or strip the arglist from
documentation into `function-documentation-1'. Use in
`function-arglist' and `function-documentation'. Modify
`function-arglist' so it looks for the `arguments: ' stuff in all
doc strings, not just subrs/autoloads, so that CL functions get
recognized properly. Change the regexp used to match "arguments: "
specs to allow nested parens inside the arg list (happens when you
have a default value specified in a CL arglist).
author | Ben Wing <ben@xemacs.org> |
---|---|
date | Tue, 23 Feb 2010 01:12:13 -0600 |
parents | 376386a54a3c |
children | 7910031dd78a |
rev | line source |
---|---|
0 | 1 /* XPM */ |
2 static char * recycle2_xpm[] = { | |
3 /* width height ncolors cpp [x_hot y_hot] */ | |
4 "32 32 4 1 26 23", | |
5 /* colors */ | |
6 " s none m none c none", | |
7 ". s iconColor1 m black c black", | |
8 "X c #7F7FFFFF0000", | |
9 "o c #45458B8B0000", | |
10 /* pixels */ | |
11 " ", | |
12 " ............ ", | |
13 " .XXXXXXXX.oooXX. ", | |
14 " XXXXXXXX.ooXXXXX. ", | |
15 " .XXXXXXXX.ooXXXXXX .. ", | |
16 " .XXXXXXX..XXXXXXXX .o. ", | |
17 " .XXXXXXXX .XXXXXXXXX. ", | |
18 " XXXXXXXX. XXXXXXXX. ", | |
19 " .XXXXXXXX. XXXXXXXX ", | |
20 " .XXXXX. .XXXXXX. ", | |
21 " ..XXX ..XXXXXXX ", | |
22 " ......... .. .XX ", | |
23 " .XXXXXXX. .XXXX. ", | |
24 " .XXXXXX. ..XXXXXX. ", | |
25 " .XXXXXXX. XXXXXXXXX ", | |
26 " .XXXXXXX. .XXXXXXXX ", | |
27 " .XXXXXXXXX. .XXXXXXX.", | |
28 " .XXXXXXX..X. XXXXXXX.", | |
29 " .XXXXXXX. .. . XXXXXXX.", | |
30 " .XXXXX. .X .XXXXXX ", | |
31 " XXXXX .X .XXXX. ", | |
32 " .XXX........ XX......... ", | |
33 " .X.ooXXXXXX .XXXXXXXXXo ", | |
34 " .X.oXoXXXXX .XXXXXXXXXXo ", | |
35 " XooXXXXXXX XXXXXXXXXXo. ", | |
36 " .ooXXXXXXX XXXXXXXXXX. ", | |
37 " ooXXXXXXX .XXXXXXXXo ", | |
38 " .XXXXXXX .XXXXXo. ", | |
39 " ....... XX.... ", | |
40 " .X ", | |
41 " .X ", | |
42 " . "}; |