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