Mercurial > hg > xemacs-beta
annotate etc/recycle2.xpm @ 5241:d579d76f3dcc
Be more careful about side-effects from Lisp code, #'reduce
src/ChangeLog addition:
2010-07-24 Aidan Kehoe <kehoea@parhasard.net>
* lisp.h (PARSE_KEYWORDS):
Always accept a nil :allow-other-keys keyword argument, as
described in the ALLOW-OTHER-KEYS-NIL Common Lisp issue writeup,
and as necessary for Paul Dietz' tests for #'reduce.
* fns.c (mapping_interaction_error): New.
(Freduce): Call mapping_interaction_error when KEY or FUNCTION
have modified a string SEQUENCE such that the byte length of the
string has changed, or such that the current cursor pointer
doesn't point to the beginning of a character.
Cf. the MAPPING-DESTRUCTIVE-INTERACTION Common Lisp issue
writeup.
When traversing a list, GCPRO the part of it we still have to
traverse, to avoid any crashes if FUNCTION or KEY amputate it
behind us and force a garbage collection.
tests/ChangeLog addition:
2010-07-24 Aidan Kehoe <kehoea@parhasard.net>
* automated/lisp-tests.el:
Test a couple of things #'reduce was just made more careful
about.
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Sat, 24 Jul 2010 15:56:57 +0100 |
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 " . "}; |