Add `arity' enhancement news.
[bpt/guile.git] / srfi / ChangeLog
CommitLineData
8c494e99
DH
12001-08-31 Dirk Herrmann <D.Herrmann@tu-bs.de>
2
3 * srfi-1.scm, srfi-13.scm: Remove the defines that were needed to
4 trick export from the beginning of the files.
5
fa5a8c00
TTN
62001-08-25 Thien-Thi Nguyen <ttn@revel.glug.org>
7
8 * srfi-19.scm (add-duration): Fix bug: Call `add-duration!' w/
9 two args. Thanks to Alex Shinn.
10
b573e744
MV
112001-08-25 Marius Vollmer <mvo@zagadka.ping.de>
12
13 * Makefile.am (AUTOMAKE_OPTIONS): Change "foreign" to "gnu".
14
e9313ed7
TTN
152001-08-24 Thien-Thi Nguyen <ttn@revel.glug.org>
16
17 * srfi-13.h (scm_string_map, scm_string_map_x,
18 scm_string_for_each): Reverse order of first two args.
19 (scm_string_for_each_index): New proc.
20
21 * srfi-13.c (scm_string_for_each): Reverse order of first 2 args.
22 (scm_string_for_each_index): New func.
23
24 * srfi-13.scm (string-for-each-index): New exported proc.
25
26 Thanks to Alex Shinn.
27
80fdeb4e
MD
282001-08-22 Mikael Djurfeldt <mdj@linnaeus.mit.edu>
29
30 * srfi-13.c (string-map): Swapped order of string and proc args to
31 conform with the srfi. (Thanks to Alex Shinn.)
32
5753f02f
GH
332001-08-05 Gary Houston <ghouston@arglist.com>
34
35 * srfi-1.scm (check-arg-type, non-negative-integer?): a couple of new
36 internal definitions.
37 (list-tabulate, iota): check for bad arguments that otherwise
38 give weird output.
39 (filter): check for proper list, to avoid infinite recursion on
40 a circular list.
41
848458d9
GH
422001-08-04 Gary Houston <ghouston@arglist.com>
43
44 * srfi-1.scm (filter): replaced with a tail-recursive version.
45 (remove): implement using filter, to make it tail-recursive.
46
9be74503
GH
472001-07-31 Gary Houston <ghouston@arglist.com>
48
49 * srfi-14.c (scm_char_set_diff_plus_intersection): wasn't correctly
50 accounting for the (char-set-union cs2...) in the spec. i.e.,
51 (char-set-diff+intersection a) -> copy-of-a, empty-set
52 and the following are equivalent:
53 (char-set-diff+intersection a (char-set #\a) (char-set #\b))
54 (char-set-diff+intersection a (char-set #\a #\b))
55
56 (scm_char_set_xor_x): disabled the side-effecting code, since it
57 gives inconsistent results to scm_char_set_xor for the case
58 (char-set-xor! a a a).
e9313ed7 59
9be74503
GH
60 (scm_char_set_diff_plus_intersection_x): added cs2 argument, since
61 two arguments are compulsory in final spec. also similar changes
62 as for scm_char_set_diff_plus_intersection.
63 * srfi-14.h (scm_char_set_diff_plus_intersection_x): added cs2.
64
d1bc6602
GH
652001-07-22 Gary Houston <ghouston@arglist.com>
66
67 * srfi-14.c (scm_char_set_intersection, scm_char_set_xor): remove
68 the compulsory cs1 arguments: all args are optional in final spec.
42b54c05 69
d1bc6602
GH
70 * srfi-14.h: declarations updated.
71
46a7b46f
MG
722001-07-18 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
73
74 * srfi-11.scm, srfi-8.scm: Update copyright notice.
75
4c4185ee
MG
762001-07-17 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
77
78 * srfi-14.c: Okay. Now I got it. Really. This time it's fixed.
79 Guaranteed. (Maybe)
e9313ed7 80
4c4185ee
MG
81 * srfi-19.scm: Define `current-time' before exporting it.
82
2671725a
MG
832001-07-17 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
84
85 * srfi-14.c: Fix for bug caused by brain-malfunctioning on my
86 side. Bit sets were handled wrong because I couldn't tell bit
87 counts from byte counts. Also, the bit array should be 256 / 8
e9313ed7 88 bytes long. Thank you, Gary!
2671725a
MG
89
90 Removed unnecessary protoype for scm_char_set_copy.
91
8b19021c
GH
922001-07-16 Gary Houston <ghouston@arglist.com>
93
94 * srfi-14.scm: export string->char-set!, not string-char-set!.
95
96 * srfi-14.c (scm_char_set_ref, scm_char_set_cursor_next,
97 scm_end_of_char_set_p): reject negative cursor values.
98 (scm_list_to_char_set, scm_list_to_char_set_x): when reporting
99 type error in list component, omit the position (was always 1).
100
139777e5
MG
1012001-07-16 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
102
103 (scm_char_set_map): Bug-fix: char-set-map was modifying the
104 argument instead of the return value.
105
cebf3d62
MG
1062001-07-16 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
107
108 * srfi-14.c: Allocate correct memory size for charsets (32 bytes),
109 use this value for initializing and comparing charsets.
110 (scm_char_set_hash): Use ``better'' hash algorithm which produces
111 more values.
112
396f36cd 1132001-07-15 Gary Houston <ghouston@arglist.com>
e9313ed7 114
396f36cd
GH
115 * srfi-14.c (scm_char_set_hash): recognise 0 instead of #f in the
116 opt arg to give default bound, as in final spec. don't allow
117 negative bounds.
b87f5a83
GH
118 (scm_char_set_hash): bug fix: was overrunning the buffer and
119 calculating based on garbage.
120 (scm_char_set_eq, scm_char_set_leq): fix argument number in error
121 reporting: wasn't incremented due to macro coding.
122 (scm_char_set): report argument number in error reporting: was
123 hard coded to 1. remove a couple of local variables.
396f36cd 124
22647fef
MV
1252001-07-13 Marius Vollmer <mvo@zagadka.ping.de>
126
127 * srfi-2.scm (and-let*): Use `re-export-syntax' instead of
128 `export-syntax'.
129
dd84cd4d
GH
1302001-07-11 Gary Houston <ghouston@arglist.com>
131
132 * srfi-14.c (s_scm_char_set_eq): bug fix: (char-set=) should
133 return #t instead of giving wrong-number-of-arguments . take a
134 single "rest" argument. use memcmp instead of a loop to compare
135 the values.
be390de2
GH
136 (s_scm_char_set_leq): similarly, (char-set<=) should return #t.
137 take a single "rest" argument.
138 srfi-14.h: update the declarations.
dd84cd4d 139
ee85583a
MG
1402001-07-09 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
141
142 * README: Cleanup.
143
99f59e93
GH
1442001-07-06 Gary Houston <ghouston@arglist.com>
145
146 * srfi-1.scm (iota, map, for-each, list-index, member, delete,
147 delete!, assoc): roll back the previous change. instead place
148 dummy definitions in a deprecated block at the beginning as in
149 srfi-13.scm.
e9313ed7 150
0d6209aa
RB
1512001-07-06 Rob Browning <rlb@defaultvalue.org>
152
153 * srfi-19.scm (priv:locale-reader): don't need open-output-string.
154
26c22ea8
GH
1552001-07-03 Gary Houston <ghouston@arglist.com>
156
157 * srfi-1.scm (iota, map, for-each, list-index, member, delete,
158 delete!, assoc): don't export until the new bindings have been
159 created. otherwise "export" thinks they are being re-exported and
160 a deprecation warning is produced.
6d52dbf2
GH
161 (map-in-order): defined and exported, to support lists of unequal
162 length.
26c22ea8 163
018adcae
MG
1642001-07-03 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
165
166 * srfi-1.scm (list-tabulate): Do not go into infinite loop for
e800aa04
MG
167 invalid arguments. Same fix for several other procedures (do not
168 use zero?, use <= 0).
018adcae 169
cef248dd
MG
1702001-07-02 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
171
172 * srfi-1.scm: Replaced calls to `map' in several procedures to
173 calls to `map1'.
174 (map, for-each): New procedures, extended from R5RS.
175
2c4df451
MG
1762001-06-28 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
177
178 * srfi-4.c: Minor cleanups.
179
180 * srfi-14.c (scm_char_set_fold, scm_char_set_unfold)
181 (scm_char_set_unfold_x, scm_char_set_for_each)
182 (scm_char_set_map, scm_char_set_filter)
183 (scm_char_set_filter_x, scm_char_set_count)
184 (scm_char_set_every, scm_char_set_any): Replace calls to
185 scm_apply() with the corresponding scm_call_N() functions.
186
187 * srfi-14.c (scm_char_set_ref, scm_char_set_cursor_next)
188 (scm_char_set_unfold, scm_char_set_unfold_x)
189 (scm_char_set_map, scm_char_set_diff_plus_intersection)
190 (scm_char_set_diff_plus_intersection_x): Replace deprecated macros
191 SCM_LISTN with calls to scm_list_N().
192
193 * srfi-13.c (scm_string_tabulate, scm_string_map)
194 (scm_string_map_x, scm_string_unfold)
195 (scm_string_unfold_right): Replace deprecated macros SCM_LISTN
196 with calls to scm_list_N().
197
198 * srfi-13.c (scm_string_any, scm_string_every),
199 (scm_string_tabulate, scm_string_trim),
200 (scm_string_trim_right, scm_string_trim_both),
201 (scm_string_compare, scm_string_compare_ci),
202 (scm_string_indexS, scm_string_index_right),
203 (scm_string_skip, scm_string_skip_right, scm_string_count),
204 (scm_string_map, scm_string_map_x, scm_string_fold),
205 (scm_string_fold_right, scm_string_unfold),
206 (scm_string_unfold_right, scm_string_for_each),
207 (scm_string_filter, scm_string_delete): Replace calls to
208 scm_apply() with the corresponding scm_call_N() functions.
209
71ca65d9
MG
2102001-06-27 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
211
212 * Makefile.am: Added SRFI-4 files in various places.
213
214 * srfi-4.c, srfi-4.h, srfi-4.scm: New files implementing SRFI-4.
215
36284627
DH
2162001-06-26 Dirk Herrmann <D.Herrmann@tu-bs.de>
217
218 * srfi-13.c (scm_string_copyS, scm_string_take, scm_string_drop,
219 scm_string_take_right, scm_string_drop_right, scm_string_trim,
220 scm_string_trim_right, scm_string_trim_both, scm_string_tokenize):
221 Use scm_mem2string instead of scm_makfromstr.
222
223 (scm_reverse_list_to_string, string_titlecase_x): Prefer
224 !SCM_<pred> over SCM_N<pred>.
225
f6581113
MV
2262001-06-25 Marius Vollmer <mvo@zagadka.ping.de>
227
228 * srfi-8.scm: Use `re-export-syntax' to correctly re-export
229 `receive'.
230
d0e06238
MV
2312001-06-18 Matthias Koeppe <mkoeppe@mail.math.uni-magdeburg.de>
232
233 The SRFI-19 implementation was completely broken. Already the
234 reference implementation did not handle DST and time zones
235 properly and relied on non-R5RS-isms like passing reals to
236 `quotient'. For Guile, some additional fixes were needed because
237 of the incomplete numeric tower implementation. See also
e9313ed7
TTN
238 srfi-19.test.
239
d0e06238 240 * srfi-19.scm (date-zone-offset): Fixed typo in export clause.
e9313ed7 241 (add-duration): Renamed from priv:add-duration.
d0e06238
MV
242 (priv:time-normalize!): Handle fractional nanoseconds; remove
243 duplicate definition.
244 (priv:current-time-tai): Fixed typo.
245 (time=?, time<=?): Fixed typos.
246 (time-tai->time-utc, time-utc->time-tai,
247 time-utc->time-monotonic): Use make-time-unnormalized instead of
248 make-time when uninitialized time fields are used.
249 (set-date-nanosecond!, set-date-second!, set-date-minute!,
250 set-date-hour!, set-date-day!, set-date-month!, set-date-year!,
251 set-date-zone-offset!): Define.
252 (priv:local-tz-offset): Take an extra argument in order to handle
253 DST effects.
254 (time-utc->date, time-tai->date, time-monotonic->date): Handle the
255 changed signature of priv:local-tz-offset. Don't pass non-integer
e9313ed7 256 arguments to quotient (non-R5RS, not supported by Guile).
d0e06238
MV
257 (date->time-utc): Ensure that seconds in a date structure are
258 always exact integers. Handle DST properly.
259 (current-date, julian-day->date, modified-julian-day->date):
e9313ed7 260 Handle the changed signature of priv:local-tz-offset.
d0e06238
MV
261 (julian-day->time-utc): Reverted earlier inexact->exact hack;
262 make-time now handles inexact arguments.
263 (priv:locale-print-time-zone): At least print the numerical time
e9313ed7 264 zone.
d0e06238
MV
265 (priv:integer-reader): Fixed named let iteration.
266 (priv:read-directives): Use set-date-month! instead of
267 priv:set-date-month! etc.
268 (string->date): Handle DST properly.
269
0f002b27
MV
2702001-06-14 Marius Vollmer <mvo@zagadka.ping.de>
271
272 * srfi-13.scm: Prevent `export' from re-exporting core bindings.
273
e81d98ec
DH
2742001-06-07 Dirk Herrmann <D.Herrmann@tu-bs.de>
275
276 * srfi-14.c (charset_print): Mark unused parameters with
277 SCM_UNUSED.
278
563058ef
MG
2792001-06-07 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
280
281 * srfi-1.scm (fold, fold-pair): Fixed a buggy call to apply.
282 (delete-duplicates): Now the first occurrence of an element is
283 retained, as required.
284 (member, assoc): Fixed wrong order of equality predicate
285 application.
563058ef 286
e9680547
MG
2872001-06-06 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
288
289 * README: Update.
290
291 * srfi-1.scm: New file.
292
f480396b
MV
2932001-06-04 Marius Vollmer <mvo@zagadka.ping.de>
294
295 Added exception notice to all files.
296
dd22a80a
MG
2972001-05-31 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
298
299 * srfi-14.scm, srfi-13.scm: Use `load-extension' for loading the
300 shared library.
301
998c3141
ML
3022001-05-31 Michael Livshin <mlivshin@bigfoot.com>
303
304 * Makefile.am (MKDEP): copied from libguile/Makefile.am, just in
305 case.
306 (CLEANFILES): added *.x (and removed from DISTCLEANFILES)
307
6b0d28a3
ML
3082001-05-28 Michael Livshin <mlivshin@bigfoot.com>
309
310 * srfi-19.scm: removed a stray open parenthesis. (thanks to
311