comparison src/ChangeLog @ 5752:70a3f4ff8da8

Improve coding style, variable names, data.c, sequence.c src/ChangeLog addition: 2013-08-05 Aidan Kehoe <kehoea@parhasard.net> * data.c: * data.c (Fcar): * data.c (Fcdr): * data.c (Fmake_weak_box): * data.c (Fweak_box_ref): * data.c (init_marking_ephemerons): * data.c (continue_marking_ephemerons): * data.c (finish_marking_ephemerons): * data.c (prune_ephemerons): * data.c (zap_finalize_list): * data.c (ephemeron_equal): * data.c (ephemeron_hash): * data.c (Fmake_ephemeron): * data.c (Fephemeron_ref): * data.c (Fephemeronp): * sequence.c: * sequence.c (Fcopy_tree): * sequence.c (Freplace): Improve coding style here; #'car and #'cdr accept lists, not just cons cells, update their argument names to reflect that. Follow coding conventions in the weak box and ephemeron code. Don't needlessly abbreviate in copy-tree, use argument names from Common Lisp in #'merge and #'replace. Document ALIST better in #'nsublis, #'sublis.
author Aidan Kehoe <kehoea@parhasard.net>
date Mon, 05 Aug 2013 17:20:16 +0100
parents 52b9fe8f44c0
children a1f281776176
comparison
equal deleted inserted replaced
5751:2b8edd304c2b 5752:70a3f4ff8da8
1 2013-08-05 Aidan Kehoe <kehoea@parhasard.net>
2
3 * data.c:
4 * data.c (Fcar):
5 * data.c (Fcdr):
6 * data.c (Fmake_weak_box):
7 * data.c (Fweak_box_ref):
8 * data.c (init_marking_ephemerons):
9 * data.c (continue_marking_ephemerons):
10 * data.c (finish_marking_ephemerons):
11 * data.c (prune_ephemerons):
12 * data.c (zap_finalize_list):
13 * data.c (ephemeron_equal):
14 * data.c (ephemeron_hash):
15 * data.c (Fmake_ephemeron):
16 * data.c (Fephemeron_ref):
17 * data.c (Fephemeronp):
18 * sequence.c:
19 * sequence.c (Fcopy_tree):
20 * sequence.c (Freplace):
21 Improve coding style here; #'car and #'cdr accept lists, not just
22 cons cells, update their argument names to reflect that.
23 Follow coding conventions in the weak box and ephemeron code.
24 Don't needlessly abbreviate in copy-tree, use argument names from
25 Common Lisp in #'merge and #'replace.
26 Document ALIST better in #'nsublis, #'sublis.
27
1 2013-06-17 Jerry James <james@xemacs.org> 28 2013-06-17 Jerry James <james@xemacs.org>
2 29
3 * Makefile.in.in: Support bignums with MPIR. 30 * Makefile.in.in: Support bignums with MPIR.
4 * config.h.in (WITH_MPIR): New macro. 31 * config.h.in (WITH_MPIR): New macro.
5 * number.c: Add MPIR support. 32 * number.c: Add MPIR support.