annotate etc/trash.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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 /* XPM */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 /* A trash can, drawn by jwz */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 static char *trash[] = {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 /* width height ncolors chars_per_pixel x_hot y_hot */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 " 32 46 4 1 16 23",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 /* colors */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 " c None m None",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 "= c gray85 m white",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 "- c gray75 m white",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 "# c black m black",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 /* pixels */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 " ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 " ###### ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 " #======# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 " #==# ==# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 " ########################## ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 " #==========================# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 " ####=####################### ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 " #========================# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 " #======================# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 " #=====##====##====##===# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 " ###-#==#--#==#--#==#--#==### ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 " #--#-#==#--#==#--#==#--#==#--# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 " ####-#==#--#==#--#==#--#==#### ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 " #-#==#--#==#--#==#--#==# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 " #-#==#--#==#--#==#--#==# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 " #-#==#--#==#--#==#--#==# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 " #-#==#--#==#--#==#--#==# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 " #-#==#--#==#--#==#--#==# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 " #-#==#--#==#--#==#--#==# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 " #-#==#--#==#--#==#--#==# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 " #-#==#--#==#--#==#--#==# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 " #-#==#--#==#--#==#--#==# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 " #-#==#--#==#--#==#--#==# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 " #-#==#--#==#--#==#--#==# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 " #-#==#--#==#--#==#--#==# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 " #-#==#--#==#--#==#--#==# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 " #-#==#--#==#--#==#--#==# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 " #-#==#--#==#--#==#--#==# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 " #-#==#--#==#--#==#--#==# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 " #-#==#--#==#--#==#--#==# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 " #-#==#--#==#--#==#--#==# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 " #-#==#--#==#--#==#--#==# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 " #-#==#--#==#--#==#--#==# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 " #-#==#--#==#--#==#--#==# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 " #-#==#--#==#--#==#--#==# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 " #-#==#--#==#--#==#--#==# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 " #-#==#--#==#--#==#--#==# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 " #-#==#--#==#--#==#--#==# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 " #-#==#--#==#--#==#--#==# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 " #-#==#--#==#--#==#--#==# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 " #======================# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 " #======================# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 " #==######=###########==# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 " #========================# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 " ######################## ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 " "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 };