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