(fifth, sixth, seventh, eighth, ninth, tenth): New 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 934.
CommitLineData
c51682b4
KR
12005-04-23 Kevin Ryde <user42@zip.com.au>
2
3 * srfi-1.c (scm_srfi1_count, scm_srfi1_filter_map): Don't modify the
4 rest argument, that belongs to the caller when reached from apply.
5 Use a temp vector like scm_srfi1_for_each.
6
044bc597
KR
72005-04-04 Kevin Ryde <user42@zip.com.au>
8
9 * srfi-1.c, srfi-1.h (scm_srfi1_concatenate, scm_srfi1_concatenate_x):
10 Add code to check argument is a list, scm_append and scm_append_x
11 don't do that on their "rest" list (in a normal build).
12
9b60e16f
KR
132005-04-02 Kevin Ryde <user42@zip.com.au>
14
15 * srfi-1.c (scm_srfi1_count): Use scm_list_copy to make arg list,
16 instead of an inline loop. Share final list check between all cases
17 to save some code.
18
19 * srfi-1.c (scm_srfi1_filter_map): Have 2-arg case share finalization
20 code of 1-arg case.
21
161ec47f
KR
22 * srfi-1.scm (alist-cons): Define just as acons, not a call to acons.
23
24 * srfi-1.scm, srfi-1.c, srfi-1.h (alist-copy): Rewrite in C.
25
9b60e16f
KR
26 * srfi-1.scm (lset-union): Rewrite to accumulate result by consing in
27 the order specified by the SRFI.
28
87bdbdbc
MV
292005-03-29 Marius Vollmer <marius.vollmer@uni-dortmund.de>
30
31 * srfi-60.c: Replaced SCM_INUMP with SCM_I_INUMP and SCM_INUM with
32 SCM_I_INUM throughout.
33
22ed4dd8
MV
342005-03-26 Marius Vollmer <mvo@zagadka.de>
35
36 * Makefile.am (srfiinclude_HEADERS): Added srfi-60.h.
37
4bc6f1c6
KR
382005-03-18 Kevin Ryde <user42@zip.com.au>
39
40 * srfi-1.scm, srfi-1.c, srfi-1.h (filter-map): Rewrite in C.
41
44981fcb
KR
422005-03-16 Kevin Ryde <user42@zip.com.au>
43
44 * srfi-1.scm, srfi-1.c, srfi-1.h (drop-right, partition!, remove!,
74b23573
KR
45 split-at, split-at!, take-right): Rewrite in C. remove! derived from
46 core filter!.
44981fcb 47
d68c4ebb
KR
482005-03-14 Kevin Ryde <user42@zip.com.au>
49
50 * srfi-1.scm, srfi-1.c, srfi-1.h (find, find-tail): Rewrite in C.
51
ba78f311
KR
522005-03-13 Kevin Ryde <user42@zip.com.au>
53
85542c38
KR
54 * srfi-1.scm (lset-union): Call `=' procedure with args in the order
55 specified by the SRFI.
56
ba78f311
KR
57 * srfi-60.scm, srfi-60.c, srfi-60.h: New files.
58 * Makefile.am: Add them.
59
a81b8618
MV
602005-03-02 Marius Vollmer <marius.vollmer@uni-dortmund.de>
61
62 * srfi-1.c: Use scm_is_pair instead of SCM_CONSP; use scm_is_null
63 instead of SCM_NULLP.
64
b5199d5d
KR
652005-02-18 Kevin Ryde <user42@zip.com.au>
66
67 * srfi-1.scm (lset-adjoin): Revert change using `list' not `acc', the
68 spec is not quite clear, but reference code uses acc, so do that.
69
3087a981
KR
702005-02-12 Kevin Ryde <user42@zip.com.au>
71
72 * srfi-1.scm (reduce, reduce-right): Don't call f with ridentity, use
73 it only if lst is empty, per srfi and intended optimization reduce
74 represents over fold.
75
cbec54af
KR
762005-02-04 Kevin Ryde <user42@zip.com.au>
77
78 * srfi-1.scm (list=): Correction to arguments passed to given elt=,
79 spec is (elt= e[i] e[i+1]) for lists i and i+1, previously the first
80 arg was always from list 0 not list i.
81
38c3534c
KR
822005-01-29 Kevin Ryde <user42@zip.com.au>
83
84 * srfi-1.scm (lset-adjoin): Actually use the given `=' procedure.
85 Test membership only on the given `list', not `acc', as per the spec.
86
83743da0
KR
87 * srfi-1.c, srfi-1.scm (remove): Rewrite in C, a trivial adaption from
88 scm_filter in the core.
89 * srfi-1.scm (remove!): Use filter!.
90
feb22e8f
KR
912005-01-28 Kevin Ryde <user42@zip.com.au>
92
93 * srfi-1.scm (lset=): Correction to pred call arg order, srfi spec is
94 (= e[i] e[i+1]), but had some calls the other way around.
95
2f0a4e30
KR
962005-01-24 Kevin Ryde <user42@zip.com.au>
97
98 * srfi-1.c (scm_srfi1_member): Correction to pred call arg order, srfi
d27d4bf7 99 spec is (PRED X elem). Update docstring from manual.
2f0a4e30
KR
100
101 * srfi-1.scm (lset=): Allow no list arguments, per srfi spec example.
102
0f0bf3b2
KR
1032005-01-18 Kevin Ryde <user42@zip.com.au>
104
105 * srfi-1.scm: Remove (ice-9 session) and (ice-9 receive), not used.
106
89efd60c
KR
1072005-01-12 Kevin Ryde <user42@zip.com.au>
108
109 * srfi-39.scm (current-input-port, current-output-port): Parameter
110 replacements for core functions, per SRFI spec.
111 (current-error-port): The same, for consistency.
112
3d8bccbd
MV
1132005-01-10 Marius Vollmer <mvo@zagadka.de>
114
115 * srfi-1.c (check_args): Bugfix to change from 2005-01-02: ARGV is
116 the vector to check, not ARGS.
117
5be5e699
MV
1182005-01-02 Marius Vollmer <mvo@zagadka.de>
119
120 * srfi-1.c: Use new vector elements API or simple vector API, as
121 appropriate.
122
45bb786f
KR
1232005-01-02 Kevin Ryde <user42@zip.com.au>
124
125 * Makefile.am (srfi_DATA): Add srfi-39.scm.
126
e1ea3bf9
MD
1272004-12-20 Mikael Djurfeldt <djurfeldt@nada.kth.se>
128
129 * README: Update, document available SRFIs.
130
64f79420
KR
1312004-12-06 Kevin Ryde <user42@zip.com.au>
132
371e3f77
KR
133 * srfi-1.scm (alist-copy, alist-delete, break, span): Change to
134 tail-recursive forms.
135
136 * srfi-1.scm (alist-delete): Correction to equality proc call argument
137 order, spec is for given KEY param first.
64f79420 138
da9c77cf
KR
1392004-12-05 Kevin Ryde <user42@zip.com.au>
140
141 * srfi-1.scm (filter-map): Change to a tail-recursive form.
eadc07b5
KR
142 (append-map, append-map!): Rewrite as simple "concatenate map" forms,
143 for tail recursiveness.
da9c77cf 144
79d52182
MV
1452004-10-26 Marius Vollmer <marius.vollmer@uni-dortmund.de>
146
147 * srfi-4.scm, srfi-4.h, srfi-4.c: Moved content into core; only
148 the skeletons remains.
149
3350b676
MV
1502004-10-22 Marius Vollmer <marius.vollmer@uni-dortmund.de>
151
152 * srfi-4.c (print_int64, print_uint64): Removed.
153 (uvec_print): Use scm_intprint for signed elemets and
154 scm_uintprint for unsigned ones. Do not use print_int64 and
155 print_uint64 since scm_intprint and scm_Uintprint can handle 64
156 bits now.
157
edea856c
SJ
1582004-09-03 Stefan Jahn <stefan@lkcc.org>
159
160 * srfi-1.c, srfi-1.h: Renamed any 'lst1' into 'list1' because
161 lst1 is a #define on Win32 systems.
162
c581203a
KR
1632004-08-26 Kevin Ryde <user42@zip.com.au>
164
165 * srfi-31.scm (rec): Add missing `error' to else clause.
166
51fab002
MV
1672004-08-26 Marius Vollmer <marius.vollmer@uni-dortmund.de>
168
169 * Makefile.am: Added appropriate @LIBGUILE_*_MAJOR@ substitutions
170 to the library names.
171 * srfi-1.scm, srfi-4.scm: Use the new library names with
172 load-extension.
173
c5080b51
MV
1742004-08-25 Marius Vollmer <mvo@zagadka.de>
175
176 SRFI-13 and SRFI-14 have been moved into the core.
177
178 * srfi-13.scm, srfi-14.scm: Simply re-export the relevant
179 bindings.
180
181 * srfi-13.h, srfi-13.c, srfi-14.h, srfi-14.c: Removed all real
182 content except for the init functions.
183
f26b9395
MV
1842004-08-19 Marius Vollmer <marius.vollmer@uni-dortmund.de>
185
186 * srfi-13.h, srfi-13.c: (scm_substring_shared): Renamed to
187 scm_substring_sharedS.
188
189 * srfi-14.c, srfi-13.c: Adapted to new internal string and symbol
190 API.
191
192 * srfi-13.scm (substring/shared): Export as replacement since we
193 now have a version in the core.
194
bc97364a
MV
1952004-08-15 Marius Vollmer <mvo@zagadka.de>
196
197 * srfi-39.scm: New, from Jose A Ortega Ruiz. Thanks!
198
038a7484
KR
1992004-08-14 Kevin Ryde <user42@zip.com.au>
200
201 * srfi-13.c (scm_string_any, scm_string_every): Add support for char
202 and charset as predicates, per SRFI-13 spec.
203
c41acab3
MV
2042004-08-12 Marius Vollmer <marius.vollmer@uni-dortmund.de>
205
206 * srfi-13.c (MY_VALIDATE_SUBSTRING_SPEC_COPY,
207 MY_VALIDATE_STRING_COPY): Modernized clones of the deprecated
208 validation macros. Replaced every use.
209
03034594
KR
2102004-08-05 Kevin Ryde <user42@zip.com.au>
211
212 * srfi-13.c (scm_string_any, scm_string_every): Enhance docstrings as
213 per doc/ref/srfi-modules.texi.
214
dbf3eb1f
MV
2152004-08-02 Marius Vollmer <marius.vollmer@uni-dortmund.de>
216
217 * srfi-4.c: Replaced scm_num2* and scm_*2num with scm_to_* and
218 scm_from_*, respectively.
219 (print_int64, print_uint64): Rewritten by just calling scm_iprin1
220 on a SCM.
221
71234d0c
KR
2222004-08-02 Kevin Ryde <user42@zip.com.au>
223
224 * srfi-13.c (scm_string_every): Correction to initial "res" value,
225