*** empty log message ***
[bpt/guile.git] / srfi / ChangeLog
1 2002-03-27 Thien-Thi Nguyen <ttn@giblet.glug.org>
2
3 * srfi-1.scm, srfi-13.scm, srfi-17.scm, srfi-4.scm, srfi-9.scm,
4 srfi-10.scm, srfi-14.scm, srfi-19.scm, srfi-6.scm, srfi-11.scm,
5 srfi-16.scm, srfi-2.scm, srfi-8.scm: Update copyright.
6 Point to manual in commentary; nfc.
7
8 2002-03-24 Marius Vollmer <mvo@zagadka.ping.de>
9
10 * Makefile.am (.c.x): Pass "-o $@" to guile-snarf.
11
12 2002-03-13 Thien-Thi Nguyen <ttn@giblet.glug.org>
13
14 * srfi-13.c, srfi-14.c, srfi-4.c:
15 Retire inclusion guard macro SCM_MAGIC_SNARFER.
16
17 * Makefile.am (snarfcppopts): New var.
18 (.c.x): Use $(snarfcppopts). Rework guile-snarf usage.
19
20 2002-03-11 Marius Vollmer <mvo@zagadka.ping.de>
21
22 * srfi-13.c (string_titlecase_x): Treat characters as unsigned so
23 that 8-bit chars work. Thanks to David Pirotte!
24
25 2002-02-24 Rob Browning <rlb@defaultvalue.org>
26
27 * Makefile.am (libguile_srfi_srfi_4_la_LDFLAGS): use
28 @LIBGUILE_SRFI_SRFI_4_INTERFACE@.
29 (libguile_srfi_srfi_13_14_la_LDFLAGS): use
30 @LIBGUILE_SRFI_SRFI_13_14_INTERFACE@.
31
32 2002-02-23 Neil Jerram <neil@ossau.uklinux.net>
33
34 * srfi-19.scm (priv:month-assoc): Correct numbers so that they
35 match the expectations of priv:year-day.
36
37 2002-02-22 Neil Jerram <neil@ossau.uklinux.net>
38
39 * srfi-19.scm (priv:year-day): Index into priv:month-assoc using
40 month number, not day number. (Thanks to Sébastien de Menten de
41 Horne for reporting the problem.)
42
43 2002-02-11 Marius Vollmer <marius.vollmer@uni-dortmund.de>
44
45 * srfi-14.c, srfi-4.c: Use scm_gc_malloc/scm_malloc and
46 scm_gc_free/free instead of scm_must_malloc and scm_must_free, as
47 appropriate.
48
49 2002-01-21 Thien-Thi Nguyen <ttn@giblet.glug.org>
50
51 * srfi-1.scm (count1, take-while): Rewrite to be tail-recursive.
52 Thanks to Panagiotis Vossos.
53
54 2002-01-20 Thien-Thi Nguyen <ttn@giblet.glug.org>
55
56 * srfi-1.scm (map1): Rewrite to be tail-recursive.
57 Thanks to Panagiotis Vossos for the bug report.
58
59 2001-12-16 Marius Vollmer <mvo@zagadka.ping.de>
60
61 * srfi-11.scm (let-values): Use `gensym' instead of `gentemp'.
62
63 2001-11-30 Neil Jerram <neil@ossau.uklinux.net>
64
65 * Makefile.am (ETAGS_ARGS): Added.
66
67 2001-11-12 Marius Vollmer <mvo@zagadka.ping.de>
68
69 * srfi-4.c: Use HAVE_LONG_LONG instead of HAVE_LONG_LONGS and test
70 it with `#ifdef' instead of `#if'.
71
72 2001-11-07 Neil Jerram <neil@ossau.uklinux.net>
73
74 * srfi-13.c (scm_string_unfold, scm_string_unfold_right),
75 srfi-14.c (scm_char_set_unfold, scm_char_set_unfold_x): Remove
76 superfluous whitespace at end of docstring lines.
77
78 2001-11-06 Thien-Thi Nguyen <ttn@glug.org>
79
80 * srfi-19.scm (time-monotonic->time-monotonic): Spurious;
81 remove from exports.
82
83 2001-11-04 Stefan Jahn <stefan@lkcc.org>
84
85 * srfi-13.h, srfi-14.h, srfi-4.h: Follow-up patch. Renamed
86 __FOO__ macros into FOO.
87
88 2001-11-03 Marius Vollmer <mvo@zagadka.ping.de>
89
90 * Makefile.am (libguile_srfi_srfi_4_la_LIBADD,
91 libguile_srfi_srfi_13_14_la_LIBADD): Refer to build directory, not
92 the source directory, for libguile.la. Thanks to Ken Raeburn.
93
94 2001-11-02 Marius Vollmer <mvo@zagadka.ping.de>
95
96 Support for native Win32. Thanks to Stefan Jahn!
97
98 * Makefile.am: Put `-no-undefined' into LDFLAGS to support linkers
99 which do not allow unresolved symbols inside shared libraries.
100
101 * srfi-13.h, srfi-14.h: Defined SCM_SRFI1314_API. Prefixed each
102 exported symbol with SCM_SRFI1314_API.
103
104 * srfi-4.h: Defined SCM_SRFI4_API. Prefixed each exported
105 symbol with SCM_SRFI4_API.
106
107 2001-10-21 Mikael Djurfeldt <mdj@linnaeus>
108
109 * srfi-2.scm, srfi-4.scm, srfi-8.scm, srfi-9.scm, srfi-10.scm,
110 srfi-11.scm, srfi-14.scm, srfi-16.scm: Move module the system
111 directives `export', `export-syntax', `re-export' and
112 `re-export-syntax' into the `define-module' form. This is the
113 recommended way of exporting bindings.
114
115 2001-09-22 Mikael Djurfeldt <mdj@linnaeus>
116
117 * srfi-19.scm (priv:split-real): Inserted missing call to
118 inexact->exact.
119
120 2001-09-21 Rob Browning <rlb@defaultvalue.org>
121
122 * srfi-14.h (SCM_CHARSET_GET): need 1L, not just 1 in "<<".
123
124 * srfi-14.c (SCM_CHARSET_SET): need 1L, not just 1 in "<<".
125 (scm_char_set_hash): val needs to be long, not just unsigned.
126 (scm_char_set): need 1L, not just 1 in "<<".
127 (scm_list_to_char_set): need 1L, not just 1 in "<<".
128 (scm_list_to_char_set_x): need 1L, not just 1 in "<<".
129 (scm_list_to_char_set_x): FUNC_NAME was wrong - added a _x.
130 (scm_string_to_char_set): string length var needed to be
131 scm_sizet, not int.
132 (scm_string_to_char_set): need 1L, not just 1 in "<<".
133 (scm_string_to_char_set_x): string length var needed to be
134 scm_sizet, not int.
135 (scm_string_to_char_set_x): need 1L, not just 1 in "<<".
136 (scm_char_set_filter): need 1L, not just 1 in "<<".
137 (scm_char_set_filter_x): need 1L, not just 1 in "<<".
138 (scm_ucs_range_to_char_set): need 1L, not just 1 in "<<".
139 (scm_ucs_range_to_char_set_x): need 1L, not just 1 in "<<".
140 (scm_char_set_adjoin): need 1L, not just 1 in "<<".
141 (scm_char_set_delete): need 1L, not just 1 in "<<".
142 (scm_char_set_adjoin_x): need 1L, not just 1 in "<<".
143 (scm_char_set_delete_x): need 1L, not just 1 in "<<".
144
145 2001-09-12 Gary Houston <ghouston@arglist.com>
146
147 * srfi-1.scm (filter): change "caller" to "filter" in check-arg-type.
148
149 2001-08-31 Dirk Herrmann <D.Herrmann@tu-bs.de>
150
151 * srfi-1.scm, srfi-13.scm: Remove the defines that were needed to
152 trick export from the beginning of the files.
153
154 2001-08-25 Thien-Thi Nguyen <ttn@revel.glug.org>
155
156 * srfi-19.scm (add-duration): Fix bug: Call `add-duration!' w/
157 two args. Thanks to Alex Shinn.
158
159 2001-08-25 Marius Vollmer <mvo@zagadka.ping.de>
160
161 * Makefile.am (AUTOMAKE_OPTIONS): Change "foreign" to "gnu".
162
163 2001-08-24 Thien-Thi Nguyen <ttn@revel.glug.org>
164
165 * srfi-13.h (scm_string_map, scm_string_map_x,
166 scm_string_for_each): Reverse order of first two args.
167 (scm_string_for_each_index): New proc.
168
169 * srfi-13.c (scm_string_for_each): Reverse order of first 2 args.
170 (scm_string_for_each_index): New func.
171
172 * srfi-13.scm (string-for-each-index): New exported proc.
173
174 Thanks to Alex Shinn.
175
176 2001-08-22 Mikael Djurfeldt <mdj@linnaeus.mit.edu>
177
178 * srfi-13.c (string-map): Swapped order of string and proc args to
179 conform with the srfi. (Thanks to Alex Shinn.)
180
181 2001-08-05 Gary Houston <ghouston@arglist.com>
182
183 * srfi-1.scm (check-arg-type, non-negative-integer?): a couple of new
184 internal definitions.
185 (list-tabulate, iota): check for bad arguments that otherwise
186 give weird output.
187 (filter): check for proper list, to avoid infinite recursion on
188 a circular list.
189
190 2001-08-04 Gary Houston <ghouston@arglist.com>
191
192 * srfi-1.scm (filter): replaced with a tail-recursive version.
193 (remove): implement using filter, to make it tail-recursive.
194
195 2001-07-31 Gary Houston <ghouston@arglist.com>
196
197 * srfi-14.c (scm_char_set_diff_plus_intersection): wasn't correctly
198 accounting for the (char-set-union cs2...) in the spec. i.e.,
199 (char-set-diff+intersection a) -> copy-of-a, empty-set
200 and the following are equivalent:
201 (char-set-diff+intersection a (char-set #\a) (char-set #\b))
202 (char-set-diff+intersection a (char-set #\a #\b))
203
204 (scm_char_set_xor_x): disabled the side-effecting code, since it
205 gives inconsistent results to scm_char_set_xor for the case
206 (char-set-xor! a a a).
207
208 (scm_char_set_diff_plus_intersection_x): added cs2 argument, since
209 two arguments are compulsory in final spec. also similar changes
210 as for scm_char_set_diff_plus_intersection.
211 * srfi-14.h (scm_char_set_diff_plus_intersection_x): added cs2.
212
213 2001-07-22 Gary Houston <ghouston@arglist.com>
214
215 * srfi-14.c (scm_char_set_intersection, scm_char_set_xor): remove
216 the compulsory cs1 arguments: all args are optional in final spec.
217
218 * srfi-14.h: declarations updated.
219
220 2001-07-18 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
221
222 * srfi-11.scm, srfi-8.scm: Update copyright notice.
223
224 2001-07-17 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
225
226 * srfi-14.c: Okay. Now I got it. Really. This time it's fixed.
227 Guaranteed. (Maybe)
228
229 * srfi-19.scm: Define `current-time' before exporting it.
230
231 2001-07-17 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
232
233 * srfi-14.c: Fix for bug caused by brain-malfunctioning on my
234 side. Bit sets were handled wrong because I couldn't tell bit
235 counts from byte counts. Also, the bit array should be 256 / 8
236 bytes long. Thank you, Gary!
237
238 Removed unnecessary protoype for scm_char_set_copy.
239
240 2001-07-16 Gary Houston <ghouston@arglist.com>
241
242 * srfi-14.scm: export string->char-set!, not string-char-set!.
243
244 * srfi-14.c (scm_char_set_ref, scm_char_set_cursor_next,
245 scm_end_of_char_set_p): reject negative cursor values.
246 (scm_list_to_char_set, scm_list_to_char_set_x): when reporting
247 type error in list component, omit the position (was always 1).
248
249 2001-07-16 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
250
251 (scm_char_set_map): Bug-fix: char-set-map was modifying the
252 argument instead of the return value.
253
254 2001-07-16 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
255
256 * srfi-14.c: Allocate correct memory size for charsets (32 bytes),
257 use this value for initializing and comparing charsets.
258 (scm_char_set_hash): Use ``better'' hash algorithm which produces
259 more values.
260
261 2001-07-15 Gary Houston <ghouston@arglist.com>
262
263 * srfi-14.c (scm_char_set_hash): recognise 0 instead of #f in the
264 opt arg to give default bound, as in final spec. don't allow
265 negative bounds.
266 (scm_char_set_hash): bug fix: was overrunning the buffer and
267 calculating based on garbage.
268 (scm_char_set_eq, scm_char_set_leq): fix argument number in error
269 reporting: wasn't incremented due to macro coding.
270 (scm_char_set): report argument number in error reporting: was
271 hard coded to 1. remove a couple of local variables.
272
273 2001-07-13 Marius Vollmer <mvo@zagadka.ping.de>
274
275 * srfi-2.scm (and-let*): Use `re-export-syntax' instead of
276 `export-syntax'.
277
278 2001-07-11 Gary Houston <ghouston@arglist.com>
279
280 * srfi-14.c (s_scm_char_set_eq): bug fix: (char-set=) should
281 return #t instead of giving wrong-number-of-arguments . take a
282 single "rest" argument. use memcmp instead of a loop to compare
283 the values.
284 (s_scm_char_set_leq): similarly, (char-set<=) should return #t.
285 take a single "rest" argument.
286 srfi-14.h: update the declarations.
287
288 2001-07-09 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
289
290 * README: Cleanup.
291
292 2001-07-06 Gary Houston <ghouston@arglist.com>
293
294 * srfi-1.scm (iota, map, for-each, list-index, member, delete,
295 delete!, assoc): roll back the previous change. instead place
296 dummy definitions in a deprecated block at the beginning as in
297 srfi-13.scm.
298
299 2001-07-06 Rob Browning <rlb@defaultvalue.org>
300
301 * srfi-19.scm (priv:locale-reader): don't need open-output-string.
302
303 2001-07-03 Gary Houston <ghouston@arglist.com>
304
305 * srfi-1.scm (iota, map, for-each, list-index, member, delete,
306 delete!, assoc): don't export until the new bindings have been
307 created. otherwise "export" thinks they are being re-exported and
308 a deprecation warning is produced.
309 (map-in-order): defined and exported, to support lists of unequal
310 length.
311
312 2001-07-03 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
313
314 * srfi-1.scm (list-tabulate): Do not go into infinite loop for
315 invalid arguments. Same fix for several other procedures (do not
316 use zero?, use <= 0).
317
318 2001-07-02 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
319
320 * srfi-1.scm: Replaced calls to `map' in several procedures to
321 calls to `map1'.
322 (map, for-each): New procedures, extended from R5RS.
323
324 2001-06-28 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
325
326 * srfi-4.c: Minor cleanups.
327
328 * srfi-14.c (scm_char_set_fold, scm_char_set_unfold)
329 (scm_char_set_unfold_x, scm_char_set_for_each)
330 (scm_char_set_map, scm_char_set_filter)
331 (scm_char_set_filter_x, scm_char_set_count)
332 (scm_char_set_every, scm_char_set_any): Replace calls to
333 scm_apply() with the corresponding scm_call_N() functions.
334
335 * srfi-14.c (scm_char_set_ref, scm_char_set_cursor_next)
336 (scm_char_set_unfold, scm_char_set_unfold_x)
337 (scm_char_set_map, scm_char_set_diff_plus_intersection)
338 (scm_char_set_diff_plus_intersection_x): Replace deprecated macros
339 SCM_LISTN with calls to scm_list_N().
340
341 * srfi-13.c (scm_string_tabulate, scm_string_map)
342 (scm_string_map_x, scm_string_unfold)
343 (scm_string_unfold_right): Replace deprecated macros SCM_LISTN
344 with calls to scm_list_N().
345
346 * srfi-13.c (scm_string_any, scm_string_every),
347 (scm_string_tabulate, scm_string_trim),
348 (scm_string_trim_right, scm_string_trim_both),
349 (scm_string_compare, scm_string_compare_ci),
350 (scm_string_indexS, scm_string_index_right),
351 (scm_string_skip, scm_string_skip_right, scm_string_count),
352 (scm_string_map, scm_string_map_x, scm_string_fold),
353 (scm_string_fold_right, scm_string_unfold),
354 (scm_string_unfold_right, scm_string_for_each),
355 (scm_string_filter, scm_string_delete): Replace calls to
356 scm_apply() with the corresponding scm_call_N() functions.
357
358 2001-06-27 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
359
360 * Makefile.am: Added SRFI-4 files in various places.
361
362 * srfi-4.c, srfi-4.h, srfi-4.scm: New files implementing SRFI-4.
363
364 2001-06-26 Dirk Herrmann <D.Herrmann@tu-bs.de>
365
366 * srfi-13.c (scm_string_copyS, scm_string_take, scm_string_drop,
367 scm_string_take_right, scm_string_drop_right, scm_string_trim,
368 scm_string_trim_right, scm_string_trim_both, scm_string_tokenize):
369 Use scm_mem2string instead of scm_makfromstr.
370
371 (scm_reverse_list_to_string, string_titlecase_x): Prefer
372 !SCM_<pred> over SCM_N<pred>.
373
374 2001-06-25 Marius Vollmer <mvo@zagadka.ping.de>
375
376 * srfi-8.scm: Use `re-export-syntax' to correctly re-export
377 `receive'.
378
379 2001-06-18 Matthias Koeppe <mkoeppe@mail.math.uni-magdeburg.de>
380
381 The SRFI-19 implementation was completely broken. Already the
382 reference implementation did not handle DST and time zones
383 properly and relied on non-R5RS-isms like passing reals to
384 `quotient'. For Guile, some additional fixes were needed because
385 of the incomplete numeric tower implementation. See also
386 srfi-19.test.
387
388 * srfi-19.scm (date-zone-offset): Fixed typo in export clause.
389 (add-duration): Renamed from priv:add-duration.
390 (priv:time-normalize!): Handle fractional nanoseconds; remove
391 duplicate definition.
392 (priv:current-time-tai): Fixed typo.
393 (time=?, time<=?): Fixed typos.
394 (time-tai->time-utc, time-utc->time-tai,
395 time-utc->time-monotonic): Use make-time-unnormalized instead of
396 make-time when uninitialized time fields are used.
397 (set-date-nanosecond!, set-date-second!, set-date-minute!,
398 set-date-hour!, set-date-day!, set-date-month!, set-date-year!,
399 set-date-zone-offset!): Define.
400 (priv:local-tz-offset): Take an extra argument in order to handle
401 DST effects.
402 (time-utc->date, time-tai->date, time-monotonic->date): Handle the
403 changed signature of priv:local-tz-offset. Don't pass non-integer
404 arguments to quotient (non-R5RS, not supported by Guile).
405 (date->time-utc): Ensure that seconds in a date structure are
406 always exact integers. Handle DST properly.
407 (current-date, julian-day->date, modified-julian-day->date):
408 Handle the changed signature of priv:local-tz-offset.
409 (julian-day->time-utc): Reverted earlier inexact->exact hack;
410 make-time now handles inexact arguments.
411 (priv:locale-print-time-zone): At least print the numerical time
412 zone.
413 (priv:integer-reader): Fixed named let iteration.
414 (priv:read-directives): Use set-date-month! instead of
415 priv:set-date-month! etc.
416 (string->date): Handle DST properly.
417
418 2001-06-14 Marius Vollmer <mvo@zagadka.ping.de>
419
420 * srfi-13.scm: Prevent `export' from re-exporting core bindings.
421
422 2001-06-07 Dirk Herrmann <D.Herrmann@tu-bs.de>
423
424 * srfi-14.c (charset_print): Mark unused parameters with
425 SCM_UNUSED.
426
427 2001-06-07 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
428
429 * srfi-1.scm (fold, fold-pair): Fixed a buggy call to apply.
430 (delete-duplicates): Now the first occurrence of an element is
431 retained, as required.
432 (member, assoc): Fixed wrong order of equality predicate
433 application.
434
435 2001-06-06 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
436
437 * README: Update.
438
439 * srfi-1.scm: New file.
440
441 2001-06-04 Marius Vollmer <mvo@zagadka.ping.de>
442
443 Added exception notice to all files.
444
445 2001-05-31 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
446
447 * srfi-14.scm, srfi-13.scm: Use `load-extension' for loading the
448 shared library.
449
450 2001-05-31 Michael Livshin <mlivshin@bigfoot.com>
451
452 * Makefile.am (MKDEP): copied from libguile/Makefile.am, just in
453 case.
454 (CLEANFILES): added *.x (and removed from DISTCLEANFILES)
455
456 2001-05-28 Michael Livshin <mlivshin@bigfoot.com>
457
458 * srfi-19.scm: removed a stray open parenthesis. (thanks to
459 Matthias Köppe for the report).
460
461 2001-05-23 Rob Browning <rlb@cs.utexas.edu>
462
463 * srfi-19.scm (:optional): renamed to optional to avoid reader
464 keywords conflict. Time passes... Removed :optional altogether
465 and just handle optional args directly. Thanks to Matthias Koeppe
466 for the report of this and the two bits below.
467 (priv:decode-julian-day-number): add inexact->exact for truncate
468 result.
469 (time-utc->date): add inexact->exact and floor so quotient will
470 work.
471
472 2001-05-22 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
473
474 * README: Update, document available SRFIs.
475
476 2001-05-21 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
477
478 * srfi-19.scm, srfi-17.scm, srfi-16.scm, srfi-14.scm, srfi-13.scm,
479 srfi-11.scm, srfi-10.scm, srfi-9.scm, srfi-8.scm, srfi-6.scm,
480 srfi-2.scm: Use `cond-expand-provide' for providing features to
481 `cond-expand'.
482
483 2001-05-20 Marius Vollmer <mvo@zagadka.ping.de>
484
485 * srfi-14.c (scm_c_init_srfi_14): Added "int" to declaration of
486 `initialized'.
487
488 2001-05-19 Marius Vollmer <mvo@zagadka.ping.de>
489
490 Avoid using module operations from C.
491
492 * srfi-13.c (scm_init_srfi_13_14): Removed.
493 * srfi-14.h, srfi-14.c (scm_c_init_srfi_14): New. Contains
494 initializations needed by C clients of srfi-14.
495 (scm_init_srfi_13, scm_init_srfi_14): Call it.
496 * srfi-13.scm: Call "scm_init_srfi_13" instead of
497 "scm_init_srfi_13_14".
498 * srfi-14.scm: Call "scm_init_srfi_14" instead of
499 "scm_init_srfi_13_14".
500
501 2001-05-16 Rob Browning <rlb@cs.utexas.edu>
502
503 * srfi-19.scm (priv:integer-reader-exact): minor cleanups.
504
505 2001-05-14 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
506
507 * Makefile.am (srfi_DATA): Added srfi-16.scm.
508
509 * srfi-16.scm: New file.
510
511 2001-05-10 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
512
513 * srfi-13.c (scm_string_delete): Logic was inversed for charset.
514 Fixed.
515
516 2001-05-08 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
517
518 * srfi-13.c (scm_string_copyS): Fixed nasty bug.
519
520 2001-05-05 Rob Browning <rlb@cs.utexas.edu>
521
522 * Makefile.am (srfi_DATA): added srfi-19.scm.
523
524 * srfi-19.scm: New file - time/date SRFI. Thanks to Will
525 Fitzgerald.
526
527 2001-05-02 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
528
529 * srfi-14.c, srfi-13.c: Added @bullet to various @itemize lists.
530
531 * srfi-10.scm: Typo fix.
532
533 2001-05-02 Rob Browning <rlb@cs.utexas.edu>
534
535 * srfi-11.scm (let-values): fix (a b c . d) case. Thanks Martin.
536
537 2001-05-02 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
538
539 * Makefile.am (srfi_DATA): Added srfi-10.scm and srfi-17.scm.
540
541 * srfi-10.scm: New file.
542
543 * srfi-17.scm: New file, contributed by Matthias Koeppe. Thanks a
544 lot!
545 Added `Commentary:' tag.
546
547 * srfi-9.scm: Added `Commentary:' tag.
548
549 2001-04-27 Rob Browning <rlb@cs.utexas.edu>
550
551 * srfi-13.h
552 (scm_reverse_string_concatenate): renamed to
553 scm_string_concatentate_reverse.
554 (scm_reverse_string_concatenate_shared): renamed to
555 scm_string_concatenate_reverse_shared.
556
557 2001-04-27 Gary Houston <ghouston@arglist.com>
558
559 * srfi-13.c (scm_init_srfi_13), srfi-14.c (scm_init_srfi_14):
560 add "srfi/" to lines including .x files so they can be found
561 when build_dir != src_dir.
562
563 2001-04-27 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
564
565 * Makefile.am (srfi_DATA): Added srfi-9.scm.
566
567 * srfi-9.scm: New file. Exports `define-record-type'.
568
569 2001-04-26 Rob Browning <rlb@cs.utexas.edu>
570
571 * Makefile.am (srfi_DATA): added srfi-6.scm.
572 (srfi_DATA): added srfi-11.scm.
573 (srfi_DATA): added srfi-8.scm.
574 (srfi_DATA): added srfi-2.scm.
575
576 * srfi-11.scm: new file - exports let-values and let*-values.
577
578 * srfi-6.scm: new file - guile already has srfi-6 procedures
579 loaded by default, so this is a dummy file right now.
580
581 * srfi-8.scm: new file - exports receive.
582
583 * srfi-2.scm: new file - just use/export (ice-9 and-let-star)
584
585 2001-04-26 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
586
587 Changed two procedure names to match final SRFI document. Thanks
588 to Rob Browning for spotting this.
589
590 * srfi-13.scm (string-concatenate-reverse),
591 (string-concatenate-reverse/shared): Rename from
592 reverse-string-concatenate[/shared].
593
594 * srfi-13.c (scm_string_concatenate_reverse_shared): Renamed from
595 scm_reverse_string_concatenate_shared.
596 (scm_string_concatenate_reverse): Renamed from
597 scm_reverse_string_concatenate.
598
599 2001-04-25 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
600
601 * configure.in, autogen.sh: Removed.
602
603 * srfi-13.c (scm_string_replace): Take sizeof (char) into account
604 when using memmove().
605
606 * srfi-14.h: Added prototypes for all exported procedures..
607
608 * srfi-13.c: Include srfi-13.h
609
610 * srfi-13.h: New file containing the prototypes.
611
612 * Makefile.am: Removed guile-srfi.texi and info_TEXINFOS variable.
613 (libguile_srfi_srfi_13_14_la_SOURCES): Added srfi-14.h, so it gets
614 distributed.
615 (libguile_srfi_srfi_13_14_la_SOURCES): Added srfi-13.h.
616
617 2001-04-24 Neil Jerram <neil@ossau.uklinux.net>
618
619 * Makefile.am: Fixed "srf-14.x" typo.
620
621 2001-04-24 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
622
623 * guile-srfi.texi: Removed, because merged with the GRM.
624
625 * guile-srfi.texi: The docs are now up to date with the
626 implementation and have new introductory material.
627
628 2001-04-23 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
629
630 Integrated the guile-srfi package into the Guile distribution.
631
632 * srfi-13.c: All procedures so specified in the SRFI now accept
633 character set arguments.
634
635 * Makefile.am: Snarfed some variables from the guile-readline
636 directory.
637
638 * srfi-14.c, srfi-14.h: Add prefix SCM_ to exported macros.
639
640 * srfi-13.scm, srfi-14.scm, srfi-13.c, srfi-14.c, srfi-14.h,
641 configure.in, Makefile.am: Added FSF copyright and Guile license
642 information.
643
644 * srfi-13.c, srfi-14.c: Include srfi-14.h.
645 (scm_init_srfi_13_14): Initialize the complete module, if not
646 already done so.
647
648 * srfi-14.h: New file.
649
650 * srfi-13.scm, srfi-14.scm: Load new combined library.
651
652 * Makefile.am: Build only one library,
653 `libguile-srfi-srfi-13-14.la'
654
655 2001-04-04 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
656
657 * guile-srfi.texi: Integrated the SRFI-14 documentation.
658
659 * srfi-14.c, srfi-14.scm: Made the procedures and variables
660 compliant to the final SRFI document.
661
662 * Renamed the package to guile-srfi.
663
664 2001-04-03 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
665
666 * NEWS: New section for 0.0.3.
667
668 * configure.in, README, guile-srfi-13.texi: Bumped version number
669 to 0.0.3.
670
671 * Released version 0.0.2.
672
673 * Makefile.am: Added rules for builing the SRFI-14 library.
674
675 * srfi-14.c, srfi-14.scm: New files, implementing SRFI-14
676 (character set library).
677
678 2001-03-27 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
679
680 * README: Updated procedure and incompatibility list.
681
682 * srfi-13.c (string_upcase_x, scm_string_upcase_xS),
683 (scm_string_upcase, string_downcase_x, scm_string_downcase_xS),
684 (scm_string_downcaseS, string_titlecase_x),
685 (scm_string_titlecase_x, scm_string_titlecase),
686 (scm_string_fill_xS, scm_string_copyS, scm_string_to_listS): New
687 procedures.
688
689 * srfi-13.scm: Export new case mapping procedures.
690
691 * guile-srfi-13.texi (What cannot be done): Removed case mapping
692 procedures from incompatibility list.
693 (Case Mapping): New section for case mapping procedures.
694
695 2001-03-26 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
696
697 * NEWS: New section for 0.0.2
698
699 * configure.in, README, guile-srfi-13.texi: Bumbed version number
700 to 0.0.2
701
702 * Released version 0.0.1.
703
704 * README: Made procedure list up-to-date.
705
706 * guile-srfi-13.texi: Fixed typos, completed reference and added
707 introductory blurb.
708
709 * srfi-13.c, srfi-13.scm: Filled in the last missing pieces.
710
711 2001-03-22 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
712
713 * Started guile-srfi-13 package. Files are copied from the
714 guile-gdbm and slightly modified.