(filter-map): More tests.
[bpt/guile.git] / srfi / ChangeLog
Content-type: text/html HCoop Git - bpt/guile.git/blame - srfi/ChangeLog


500 - Internal Server Error

Malformed UTF-8 character (fatal) at (eval 8) line 1, <$fd> line 775.
CommitLineData
44981fcb
KR
12005-03-16 Kevin Ryde <user42@zip.com.au>
2
3 * srfi-1.scm, srfi-1.c, srfi-1.h (drop-right, partition!, remove!,
74b23573
KR
4 split-at, split-at!, take-right): Rewrite in C. remove! derived from
5 core filter!.
44981fcb 6
d68c4ebb
KR
72005-03-14 Kevin Ryde <user42@zip.com.au>
8
9 * srfi-1.scm, srfi-1.c, srfi-1.h (find, find-tail): Rewrite in C.
10
ba78f311
KR
112005-03-13 Kevin Ryde <user42@zip.com.au>
12
85542c38
KR
13 * srfi-1.scm (lset-union): Call `=' procedure with args in the order
14 specified by the SRFI.
15
ba78f311
KR
16 * srfi-60.scm, srfi-60.c, srfi-60.h: New files.
17 * Makefile.am: Add them.
18
a81b8618
MV
192005-03-02 Marius Vollmer <marius.vollmer@uni-dortmund.de>
20
21 * srfi-1.c: Use scm_is_pair instead of SCM_CONSP; use scm_is_null
22 instead of SCM_NULLP.
23
b5199d5d
KR
242005-02-18 Kevin Ryde <user42@zip.com.au>
25
26 * srfi-1.scm (lset-adjoin): Revert change using `list' not `acc', the
27 spec is not quite clear, but reference code uses acc, so do that.
28
3087a981
KR
292005-02-12 Kevin Ryde <user42@zip.com.au>
30
31 * srfi-1.scm (reduce, reduce-right): Don't call f with ridentity, use
32 it only if lst is empty, per srfi and intended optimization reduce
33 represents over fold.
34
cbec54af
KR
352005-02-04 Kevin Ryde <user42@zip.com.au>
36
37 * srfi-1.scm (list=): Correction to arguments passed to given elt=,
38 spec is (elt= e[i] e[i+1]) for lists i and i+1, previously the first
39 arg was always from list 0 not list i.
40
38c3534c
KR
412005-01-29 Kevin Ryde <user42@zip.com.au>
42
43 * srfi-1.scm (lset-adjoin): Actually use the given `=' procedure.
44 Test membership only on the given `list', not `acc', as per the spec.
45
83743da0
KR
46 * srfi-1.c, srfi-1.scm (remove): Rewrite in C, a trivial adaption from
47 scm_filter in the core.
48 * srfi-1.scm (remove!): Use filter!.
49
feb22e8f
KR
502005-01-28 Kevin Ryde <user42@zip.com.au>
51
52 * srfi-1.scm (lset=): Correction to pred call arg order, srfi spec is
53 (= e[i] e[i+1]), but had some calls the other way around.
54
2f0a4e30
KR
552005-01-24 Kevin Ryde <user42@zip.com.au>
56
57 * srfi-1.c (scm_srfi1_member): Correction to pred call arg order, srfi
d27d4bf7 58 spec is (PRED X elem). Update docstring from manual.
2f0a4e30
KR
59
60 * srfi-1.scm (lset=): Allow no list arguments, per srfi spec example.
61
0f0bf3b2
KR
622005-01-18 Kevin Ryde <user42@zip.com.au>
63
64 * srfi-1.scm: Remove (ice-9 session) and (ice-9 receive), not used.
65
89efd60c
KR
662005-01-12 Kevin Ryde <user42@zip.com.au>
67
68 * srfi-39.scm (current-input-port, current-output-port): Parameter
69 replacements for core functions, per SRFI spec.
70 (current-error-port): The same, for consistency.
71
3d8bccbd
MV
722005-01-10 Marius Vollmer <mvo@zagadka.de>
73
74 * srfi-1.c (check_args): Bugfix to change from 2005-01-02: ARGV is
75 the vector to check, not ARGS.
76
5be5e699
MV
772005-01-02 Marius Vollmer <mvo@zagadka.de>
78
79 * srfi-1.c: Use new vector elements API or simple vector API, as
80 appropriate.
81
45bb786f
KR
822005-01-02 Kevin Ryde <user42@zip.com.au>
83
84 * Makefile.am (srfi_DATA): Add srfi-39.scm.
85
e1ea3bf9
MD
862004-12-20 Mikael Djurfeldt <djurfeldt@nada.kth.se>
87
88 * README: Update, document available SRFIs.
89
64f79420
KR
902004-12-06 Kevin Ryde <user42@zip.com.au>
91
371e3f77
KR
92 * srfi-1.scm (alist-copy, alist-delete, break, span): Change to
93 tail-recursive forms.
94
95 * srfi-1.scm (alist-delete): Correction to equality proc call argument
96 order, spec is for given KEY param first.
64f79420 97
da9c77cf
KR
982004-12-05 Kevin Ryde <user42@zip.com.au>
99
100 * srfi-1.scm (filter-map): Change to a tail-recursive form.
eadc07b5
KR
101 (append-map, append-map!): Rewrite as simple "concatenate map" forms,
102 for tail recursiveness.
da9c77cf 103
79d52182
MV
1042004-10-26 Marius Vollmer <marius.vollmer@uni-dortmund.de>
105
106 * srfi-4.scm, srfi-4.h, srfi-4.c: Moved content into core; only
107 the skeletons remains.
108
3350b676
MV
1092004-10-22 Marius Vollmer <marius.vollmer@uni-dortmund.de>
110
111 * srfi-4.c (print_int64, print_uint64): Removed.
112 (uvec_print): Use scm_intprint for signed elemets and
113 scm_uintprint for unsigned ones. Do not use print_int64 and
114 print_uint64 since scm_intprint and scm_Uintprint can handle 64
115 bits now.
116
edea856c
SJ
1172004-09-03 Stefan Jahn <stefan@lkcc.org>
118
119 * srfi-1.c, srfi-1.h: Renamed any 'lst1' into 'list1' because
120 lst1 is a #define on Win32 systems.
121
c581203a
KR
1222004-08-26 Kevin Ryde <user42@zip.com.au>
123
124 * srfi-31.scm (rec): Add missing `error' to else clause.
125
51fab002
MV
1262004-08-26 Marius Vollmer <marius.vollmer@uni-dortmund.de>
127
128 * Makefile.am: Added appropriate @LIBGUILE_*_MAJOR@ substitutions
129 to the library names.
130 * srfi-1.scm, srfi-4.scm: Use the new library names with
131 load-extension.
132
c5080b51
MV
1332004-08-25 Marius Vollmer <mvo@zagadka.de>
134
135 SRFI-13 and SRFI-14 have been moved into the core.
136
137 * srfi-13.scm, srfi-14.scm: Simply re-export the relevant
138 bindings.
139
140 * srfi-13.h, srfi-13.c, srfi-14.h, srfi-14.c: Removed all real
141 content except for the init functions.
142
f26b9395
MV
1432004-08-19 Marius Vollmer <marius.vollmer@uni-dortmund.de>
144
145 * srfi-13.h, srfi-13.c: (scm_substring_shared): Renamed to
146 scm_substring_sharedS.
147
148 * srfi-14.c, srfi-13.c: Adapted to new internal string and symbol
149 API.
150
151 * srfi-13.scm (substring/shared): Export as replacement since we
152 now have a version in the core.
153
bc97364a
MV
1542004-08-15 Marius Vollmer <mvo@zagadka.de>
155
156 * srfi-39.scm: New, from Jose A Ortega Ruiz. Thanks!
157
038a7484
KR
1582004-08-14 Kevin Ryde <user42@zip.com.au>
159
160 * srfi-13.c (scm_string_any, scm_string_every): Add support for char
161 and charset as predicates, per SRFI-13 spec.
162
c41acab3
MV
1632004-08-12 Marius Vollmer <marius.vollmer@uni-dortmund.de>
164
165 * srfi-13.c (MY_VALIDATE_SUBSTRING_SPEC_COPY,
166 MY_VALIDATE_STRING_COPY): Modernized clones of the deprecated
167 validation macros. Replaced every use.
168
03034594
KR
1692004-08-05 Kevin Ryde <user42@zip.com.au>
170
171 * srfi-13.c (scm_string_any, scm_string_every): Enhance docstrings as
172 per doc/ref/srfi-modules.texi.
173
dbf3eb1f
MV
1742004-08-02 Marius Vollmer <marius.vollmer@uni-dortmund.de>
175
176 * srfi-4.c: Replaced scm_num2* and scm_*2num with scm_to_* and
177 scm_from_*, respectively.
178 (print_int64, print_uint64): Rewritten by just calling scm_iprin1
179 on a SCM.
180
71234d0c
KR
1812004-08-02 Kevin Ryde <user42@zip.com.au>
182
183 * srfi-13.c (scm_string_every): Correction to initial "res" value,
184