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