*** empty log message ***
[bpt/guile.git] / srfi / ChangeLog
1 2005-08-12 Marius Vollmer <mvo@zagadka.de>
2
3 * srfi-1.c: Use scm_is_null instead of SCM_NULLP. Thanks to
4 Peter Gavin!
5
6 2005-08-01 Marius Vollmer <mvo@zagadka.de>
7
8 * srfi-1.c (check_map_args): Move check_map_error label and elt
9 variable outside of loop scope so that we do not jump past the
10 initialization of elt.
11
12 2005-06-12 Marius Vollmer <mvo@zagadka.de>
13
14 * srfi-1.c: Do not use INUM macros, they are deprecated.
15
16 2005-05-07 Kevin Ryde <user42@zip.com.au>
17
18 * srfi-1.scm, srfi-1.c, srfi-1.h (car+cdr, fold, last, list-index,
19 list-tabulate, not-pair, xcons): Rewrite in C.
20
21 2005-05-04 Kevin Ryde <user42@zip.com.au>
22
23 * srfi-1.scm, srfi-1.c, srfi-1.h (break, break!, drop-right!,
24 drop-while, eighth, fifth, lset-adjoin, ninth, reduce, reduce-right,
25 seventh, sixth, span, span!, take!, take-while, take-while!, tenth):
26 Rewrite in C.
27
28 2005-04-23 Kevin Ryde <user42@zip.com.au>
29
30 * srfi-1.c (scm_srfi1_count, scm_srfi1_filter_map): Don't modify the
31 rest argument, that belongs to the caller when reached from apply.
32 Use a temp vector like scm_srfi1_for_each.
33
34 2005-04-04 Kevin Ryde <user42@zip.com.au>
35
36 * srfi-1.c, srfi-1.h (scm_srfi1_concatenate, scm_srfi1_concatenate_x):
37 Add code to check argument is a list, scm_append and scm_append_x
38 don't do that on their "rest" list (in a normal build).
39
40 2005-04-02 Kevin Ryde <user42@zip.com.au>
41
42 * srfi-1.c (scm_srfi1_count): Use scm_list_copy to make arg list,
43 instead of an inline loop. Share final list check between all cases
44 to save some code.
45
46 * srfi-1.c (scm_srfi1_filter_map): Have 2-arg case share finalization
47 code of 1-arg case.
48
49 * srfi-1.scm (alist-cons): Define just as acons, not a call to acons.
50
51 * srfi-1.scm, srfi-1.c, srfi-1.h (alist-copy): Rewrite in C.
52
53 * srfi-1.scm (lset-union): Rewrite to accumulate result by consing in
54 the order specified by the SRFI.
55
56 2005-03-29 Marius Vollmer <marius.vollmer@uni-dortmund.de>
57
58 * srfi-60.c: Replaced SCM_INUMP with SCM_I_INUMP and SCM_INUM with
59 SCM_I_INUM throughout.
60
61 2005-03-26 Marius Vollmer <mvo@zagadka.de>
62
63 * Makefile.am (srfiinclude_HEADERS): Added srfi-60.h.
64
65 2005-03-18 Kevin Ryde <user42@zip.com.au>
66
67 * srfi-1.scm, srfi-1.c, srfi-1.h (filter-map): Rewrite in C.
68
69 2005-03-16 Kevin Ryde <user42@zip.com.au>
70
71 * srfi-1.scm, srfi-1.c, srfi-1.h (drop-right, partition!, remove!,
72 split-at, split-at!, take-right): Rewrite in C. remove! derived from
73 core filter!.
74
75 2005-03-14 Kevin Ryde <user42@zip.com.au>
76
77 * srfi-1.scm, srfi-1.c, srfi-1.h (find, find-tail): Rewrite in C.
78
79 2005-03-13 Kevin Ryde <user42@zip.com.au>
80
81 * srfi-1.scm (lset-union): Call `=' procedure with args in the order
82 specified by the SRFI.
83
84 * srfi-60.scm, srfi-60.c, srfi-60.h: New files.
85 * Makefile.am: Add them.
86
87 2005-03-02 Marius Vollmer <marius.vollmer@uni-dortmund.de>
88
89 * srfi-1.c: Use scm_is_pair instead of SCM_CONSP; use scm_is_null
90 instead of SCM_NULLP.
91
92 2005-02-18 Kevin Ryde <user42@zip.com.au>
93
94 * srfi-1.scm (lset-adjoin): Revert change using `list' not `acc', the
95 spec is not quite clear, but reference code uses acc, so do that.
96
97 2005-02-12 Kevin Ryde <user42@zip.com.au>
98
99 * srfi-1.scm (reduce, reduce-right): Don't call f with ridentity, use
100 it only if lst is empty, per srfi and intended optimization reduce
101 represents over fold.
102
103 2005-02-04 Kevin Ryde <user42@zip.com.au>
104
105 * srfi-1.scm (list=): Correction to arguments passed to given elt=,
106 spec is (elt= e[i] e[i+1]) for lists i and i+1, previously the first
107 arg was always from list 0 not list i.
108
109 2005-01-29 Kevin Ryde <user42@zip.com.au>
110
111 * srfi-1.scm (lset-adjoin): Actually use the given `=' procedure.
112 Test membership only on the given `list', not `acc', as per the spec.
113
114 * srfi-1.c, srfi-1.scm (remove): Rewrite in C, a trivial adaption from
115 scm_filter in the core.
116 * srfi-1.scm (remove!): Use filter!.
117
118 2005-01-28 Kevin Ryde <user42@zip.com.au>
119
120 * srfi-1.scm (lset=): Correction to pred call arg order, srfi spec is
121 (= e[i] e[i+1]), but had some calls the other way around.
122
123 2005-01-24 Kevin Ryde <user42@zip.com.au>
124
125 * srfi-1.c (scm_srfi1_member): Correction to pred call arg order, srfi
126 spec is (PRED X elem). Update docstring from manual.
127
128 * srfi-1.scm (lset=): Allow no list arguments, per srfi spec example.
129
130 2005-01-18 Kevin Ryde <user42@zip.com.au>
131
132 * srfi-1.scm: Remove (ice-9 session) and (ice-9 receive), not used.
133
134 2005-01-12 Kevin Ryde <user42@zip.com.au>
135
136 * srfi-39.scm (current-input-port, current-output-port): Parameter
137 replacements for core functions, per SRFI spec.
138 (current-error-port): The same, for consistency.
139
140 2005-01-10 Marius Vollmer <mvo@zagadka.de>
141
142 * srfi-1.c (check_args): Bugfix to change from 2005-01-02: ARGV is
143 the vector to check, not ARGS.
144
145 2005-01-02 Marius Vollmer <mvo@zagadka.de>
146
147 * srfi-1.c: Use new vector elements API or simple vector API, as
148 appropriate.
149
150 2005-01-02 Kevin Ryde <user42@zip.com.au>
151
152 * Makefile.am (srfi_DATA): Add srfi-39.scm.
153
154 2004-12-20 Mikael Djurfeldt <djurfeldt@nada.kth.se>
155
156 * README: Update, document available SRFIs.
157
158 2004-12-06 Kevin Ryde <user42@zip.com.au>
159
160 * srfi-1.scm (alist-copy, alist-delete, break, span): Change to
161 tail-recursive forms.
162
163 * srfi-1.scm (alist-delete): Correction to equality proc call argument
164 order, spec is for given KEY param first.
165
166 2004-12-05 Kevin Ryde <user42@zip.com.au>
167
168 * srfi-1.scm (filter-map): Change to a tail-recursive form.
169 (append-map, append-map!): Rewrite as simple "concatenate map" forms,
170 for tail recursiveness.
171
172 2004-10-26 Marius Vollmer <marius.vollmer@uni-dortmund.de>
173
174 * srfi-4.scm, srfi-4.h, srfi-4.c: Moved content into core; only
175 the skeletons remains.
176
177 2004-10-22 Marius Vollmer <marius.vollmer@uni-dortmund.de>
178
179 * srfi-4.c (print_int64, print_uint64): Removed.
180 (uvec_print): Use scm_intprint for signed elemets and
181 scm_uintprint for unsigned ones. Do not use print_int64 and
182 print_uint64 since scm_intprint and scm_Uintprint can handle 64
183 bits now.
184
185 2004-09-03 Stefan Jahn <stefan@lkcc.org>
186
187 * srfi-1.c, srfi-1.h: Renamed any 'lst1' into 'list1' because
188 lst1 is a #define on Win32 systems.
189
190 2004-08-26 Kevin Ryde <user42@zip.com.au>
191
192 * srfi-31.scm (rec): Add missing `error' to else clause.
193
194 2004-08-26 Marius Vollmer <marius.vollmer@uni-dortmund.de>
195
196 * Makefile.am: Added appropriate @LIBGUILE_*_MAJOR@ substitutions
197 to the library names.
198 * srfi-1.scm, srfi-4.scm: Use the new library names with
199 load-extension.
200
201 2004-08-25 Marius Vollmer <mvo@zagadka.de>
202
203 SRFI-13 and SRFI-14 have been moved into the core.
204
205 * srfi-13.scm, srfi-14.scm: Simply re-export the relevant
206 bindings.
207
208 * srfi-13.h, srfi-13.c, srfi-14.h, srfi-14.c: Removed all real
209 content except for the init functions.
210
211 2004-08-19 Marius Vollmer <marius.vollmer@uni-dortmund.de>
212
213 * srfi-13.h, srfi-13.c: (scm_substring_shared): Renamed to
214 scm_substring_sharedS.
215
216 * srfi-14.c, srfi-13.c: Adapted to new internal string and symbol
217 API.
218
219 * srfi-13.scm (substring/shared): Export as replacement since we
220 now have a version in the core.
221
222 2004-08-15 Marius Vollmer <mvo@zagadka.de>
223
224 * srfi-39.scm: New, from Jose A Ortega Ruiz. Thanks!
225
226 2004-08-14 Kevin Ryde <user42@zip.com.au>
227
228 * srfi-13.c (scm_string_any, scm_string_every): Add support for char
229 and charset as predicates, per SRFI-13 spec.
230
231 2004-08-12 Marius Vollmer <marius.vollmer@uni-dortmund.de>
232
233 * srfi-13.c (MY_VALIDATE_SUBSTRING_SPEC_COPY,
234 MY_VALIDATE_STRING_COPY): Modernized clones of the deprecated
235 validation macros. Replaced every use.
236
237 2004-08-05 Kevin Ryde <user42@zip.com.au>
238
239 * srfi-13.c (scm_string_any, scm_string_every): Enhance docstrings as
240 per doc/ref/srfi-modules.texi.
241
242 2004-08-02 Marius Vollmer <marius.vollmer@uni-dortmund.de>
243
244 * srfi-4.c: Replaced scm_num2* and scm_*2num with scm_to_* and
245 scm_from_*, respectively.
246 (print_int64, print_uint64): Rewritten by just calling scm_iprin1
247 on a SCM.
248
249 2004-08-02 Kevin Ryde <user42@zip.com.au>
250
251 * srfi-13.c (scm_string_every): Correction to initial "res" value,
252 return should be #t for an empty string. Reported by Andreas Vögele.
253
254 2004-07-10 Marius Vollmer <marius.vollmer@uni-dortmund.de>
255
256 * srfi-13.c, srfi-14.c, srfi-4.c: Changed all uses of
257 SCM_VALIDATE_INUM, SCM_VALIDATE_INUM_COPY, SCM_VALIDATE_BIGINT,
258 SCM_VALIDATE_INUM_MIN, SCM_VALIDATE_INUM_MIN_COPY,
259 SCM_VALIDATE_INUM_MIN_DEF_COPY,SCM_VALIDATE_INUM_DEF,
260 SCM_VALIDATE_INUM_DEF_COPY, SCM_VALIDATE_INUM_RANGE,
261 SCM_VALIDATE_INUM_RANGE_COPY to scm_to_size_t or similar.
262
263 2004-07-06 Marius Vollmer <marius.vollmer@uni-dortmund.de>
264
265 * srfi-1.c, srfi-13.c, srfi-14.c, srfi-4.c: Replaced all uses of
266 deprecated SCM_FALSEP, SCM_NFALSEP, SCM_BOOL, SCM_NEGATE_BOOL, and
267 SCM_BOOLP with scm_is_false, scm_is_true, scm_from_bool, and
268 scm_is_bool, respectively.
269
270 2004-07-05 Kevin Ryde <user42@zip.com.au>
271
272 * srfi-4.c (uvec_sizes): Add "const".
273
274 * srfi-31.scm: Correction to heading comment.
275
276 2004-06-20 Rob Browning <rlb@defaultvalue.org>
277
278 * srfi-4.c: fix #ifdef checks for 64-bit types; should be #if.
279 Add separate symmetric test for SCM_HAVE_T_UINT64 in one case.
280 (uvec_print): rewrite using a union to make more
281 compact, and use static print_uint64 and print_int64 to print
282 64-bit elements.
283 (print_int64): new static function (temporary fix).
284 (print_uint64): new static function (temporary fix).
285
286 * Makefile.am (srfi_DATA): add srfi-31.scm.
287
288 * srfi-31.scm: new file.
289
290 2004-04-24 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
291
292 * srfi-17.scm (setter, car, cdr etc.): When within one define
293 expression a new variable in the local module is defined in terms
294 of an equally named variable from some other module, use @ to
295 refer to the variable in the other module. This is necessary due
296 to section 5.2.1 of R5RS: In a define expression first the new
297 binding is created and then the expression is evaluated.
298
299 2004-04-24 Kevin Ryde <user42@zip.com.au>
300
301 * srfi-11.scm (let-values): Use make-symbol rather than gensym, for
302 guaranteed uniqueness of temp variable symbols.
303
304 2004-04-15 Kevin Ryde <user42@zip.com.au>
305
306 * srfi-13.c (scm_string_trim, scm_string_trim_right,
307 scm_string_trim_both): Cast to unsigned char for isspace.
308
309 2004-04-06 Han-Wen Nienhuys <hanwen@xs4all.nl>
310
311 * srfi-13.c (s_scm_string_map): convert character to unsigned char
312 before converting to unsigned int. This prevents hi-bit ascii as
313 being converted large integers.
314 (string_upcase_x): change caller for scm_{up,down}case to
315 scm_c_{up,down}case
316
317 2004-03-23 Kevin Ryde <user42@zip.com.au>
318
319 * srfi-1.scm (circular-list): Rewrite using set-cdr!, no need to copy
320 parameter list.
321
322 2004-02-08 Mikael Djurfeldt <djurfeldt@nada.kth.se>
323
324 * Makefile.am (TAGS_FILES): Use this variable instead of
325 ETAGS_ARGS so that TAGS can be built using separate build
326 directory.
327
328 2004-01-24 Marius Vollmer <mvo@zagadka.de>
329
330 * Makefile.am (srfi_DATA): Added srfi-26.scm.
331
332 2004-01-21 Marius Vollmer <m.vollmer@ping.de>
333
334 * srfi-26.scm: New, from Daniel Skarda. Thanks!
335
336 2003-12-03 Kevin Ryde <user42@zip.com.au>
337
338 * srfi-1.c, srfi-1.h, srfi-1.scm (count): Rewrite in C, avoiding
339 non-tail recursion.
340
341 * srfi-1.scm (map!): Define as an alias for map, previous definition
342 was not tail-recursive.
343
344 2003-08-23 Kevin Ryde <user42@zip.com.au>
345
346 * srfi-1.c, srfi-1.h, srfi-1.scm (list-copy): New function, derived
347 from core list-copy but allowing improper lists, per SRFI-1 spec.
348
349 * srfi-19.scm (date-week-number): Correction, day of week starting
350 week applied was off by one.
351
352 2003-07-29 Kevin Ryde <user42@zip.com.au>
353
354 * srfi-1.c, srfi-1.scm (concatenate, concatenate!): Use scm_append and
355 scm_append_x.
356
357 * srfi-1.c, srfi-1.h, srfi-1.scm (length+): Rewrite using scm_ilength.
358
359 * srfi-34.scm: Add cond-expand-provide srfi-34.
360
361 2003-07-14 Matthias Koeppe <mkoeppe@mail.math.uni-magdeburg.de>
362
363 * srfi-1.c, srfi-1.h (scm_srfi1_partition), srfi-1.scm (partition):
364 Re-implement in C to avoid stack overflows for long input lists.
365
366 2003-07-08 Kevin Ryde <user42@zip.com.au>
367
368 * srfi-1.c, srfi-1.h (scm_srfi1_delete, scm_srfi1_delete_x,
369 scm_srfi1_delete_duplicates, scm_srfi1_delete_duplicates_x): New
370 functions. scm_srfi1_delete_x is derived from scm_delete_x.
371 * srfi-1.scm (delete, delete!, delete-duplicates, delete-duplicates!):
372 Remove.
373
374 2003-06-07 Kevin Ryde <user42@zip.com.au>
375
376 * srfi-6.scm: #:re-export open-input-string, open-output-string and
377 get-output-string, for the benefit of applications wanting to use
378 #:select on the module.
379
380 2003-05-29 Stefan Jahn <stefan@lkcc.org>
381
382 * Makefile.am (libguile_srfi_srfi_1_la_LDFLAGS,
383 libguile_srfi_srfi_4_la_LDFLAGS,
384 libguile_srfi_srfi_13_14__la_LDFLAGS): Added the -no-undefined
385 option for the mingw32 build.
386
387 2003-05-13 Kevin Ryde <user42@zip.com.au>
388
389 * srfi-1.scm (delete): Fix predicate arg order to match srfi-1 spec.
390
391 2003-05-10 Kevin Ryde <user42@zip.com.au>
392
393 * srfi-1.scm (take): Make this an alias for list-head.
394 (drop): Make this an alias for list-tail.
395
396 2003-04-30 Neil Jerram <neil@ossau.uklinux.net>
397
398 * srfi-34.scm: New file.
399
400 2003-04-23 Marius Vollmer <mvo@zagadka.de>
401
402 * srfi-1.scm: Removed stray "o" from exports list.
403
404 2003-04-21 Dirk Herrmann <D.Herrmann@tu-bs.de>
405
406 * srfi-1.c (srfi1_ilength): Prefer !SCM_CONSP over SCM_NCONSP.
407 Now, guile itself does not include any calls to SCM_NCONSP any
408 more.
409
410 2003-04-05 Marius Vollmer <mvo@zagadka.de>
411
412 * Changed license terms to the plain LGPL thru-out.
413
414 2003-03-25 Rob Browning <rlb@defaultvalue.org>
415
416 * srfi-4.c: replace typedefs for basic types with typedefs using
417 new standard int types (i.e. scm_t_uint8, etc.) -- should probably
418 remove typedefs altogether later.
419
420 2003-03-24 Mikael Djurfeldt <djurfeldt@nada.kth.se>
421
422 * srfi-1.scm: Re-export all srfi-1 bindings implemented by the
423 core. (Thanks to Kevin Ryde.)
424
425 2003-03-12 Mikael Djurfeldt <djurfeldt@nada.kth.se>
426
427 * srfi-13.scm: Mark replacements.
428
429 * srfi-17.scm: Mark replacements.
430
431 2003-03-11 Mikael Djurfeldt <djurfeldt@nada.kth.se>
432
433 * srfi-1.scm (iota, map, for-each, map-in-order, list-index,
434 member, delete, delete!, assoc): Marked as replacements.
435 (filter, filter!): Removed. (Now implemented in the core.)
436
437 2003-03-06 Mikael Djurfeldt <djurfeldt@nada.kth.se>
438
439 * srfi-1.c (scm_init_srfi_1): Extend root module map and for-each
440 with the versions in this module using
441 scm_c_extend_primitive_generic.
442
443 2003-02-03 Mikael Djurfeldt <djurfeldt@nada.kth.se>
444
445 * srfi-1.c (srfi1_for_each): Corrected argument checking for the
446 case of two argument lists. (Thanks to Kevin Ryde.)
447
448 2002-12-08 Rob Browning <rlb@defaultvalue.org>
449
450 * Makefile.am (srfidir): VERSION -> GUILE_EFFECTIVE_VERSION.
451
452 2002-12-02 Marius Vollmer <mvo@zagadka.ping.de>
453
454 * Makefile.am (srfiinclude_HEADERS): Added srfi-1.h.
455
456 2002-12-01 Mikael Djurfeldt <mdj@linnaeus>
457
458 * srfi-1.scm: Load srfi-1 extension.
459 (map, map-in-order, for-each, member, assoc): Replaced by
460 primitives in srfi-1.c.
461 (map1): Defined as `map'.
462
463 * Makefile.am: Added rules for srfi-1.c.
464
465 * srfi-1.c, srfi-1.h: New files.
466
467 2002-05-06 Marius Vollmer <mvo@zagadka.ping.de>
468
469 * srfi-13.c (scm_string_tokenize): Instead of using "isgraphic" as
470 the subtitute for char-set:graphic when then token-set hsa been
471 defaulted, grab the real char-set:graphic from (srfi srfi-14).
472
473 * srfi-14.h (SCM_CHARSET_GET): Cast IDX to unsigned char so that
474 it works for 8-bit characters. Thanks to Matthias Koeppe! No,
475 make that "Köppe".
476
477 2002-04-24 Marius Vollmer <mvo@zagadka.ping.de>
478
479 * srfi-13.c (s_scm_string_tokenize): Only take character sets as
480 the second arg. Collect characters belonging to this set into
481 tokens (as specified by the SRFI), instead of splitting at these
482 characters. Default to an equivalent of char-set:graphic instead
483 of everything-but-whitespace. Thanks to Matthias Koeppe!
484
485 2002-04-10 Rob Browning <rlb@defaultvalue.org>
486
487 * .cvsignore: add *.c.clean.c.
488
489 2002-03-27 Thien-Thi Nguyen <ttn@giblet.glug.org>
490
491 * srfi-1.scm, srfi-13.scm, srfi-17.scm, srfi-4.scm, srfi-9.scm,
492 srfi-10.scm, srfi-14.scm, srfi-19.scm, srfi-6.scm, srfi-11.scm,
493 srfi-16.scm, srfi-2.scm, srfi-8.scm: Update copyright.
494 Point to manual in commentary; nfc.
495
496 2002-03-24 Marius Vollmer <mvo@zagadka.ping.de>
497
498 * Makefile.am (.c.x): Pass "-o $@" to guile-snarf.
499
500 2002-03-13 Thien-Thi Nguyen <ttn@giblet.glug.org>
501
502 * srfi-13.c, srfi-14.c, srfi-4.c:
503 Retire inclusion guard macro SCM_MAGIC_SNARFER.
504
505 * Makefile.am (snarfcppopts): New var.
506 (.c.x): Use $(snarfcppopts). Rework guile-snarf usage.
507
508 2002-03-11 Marius Vollmer <mvo@zagadka.ping.de>
509
510 * srfi-13.c (string_titlecase_x): Treat characters as unsigned so
511 that 8-bit chars work. Thanks to David Pirotte!
512
513 2002-02-24 Rob Browning <rlb@defaultvalue.org>
514
515 * Makefile.am (libguile_srfi_srfi_4_la_LDFLAGS): use
516 @LIBGUILE_SRFI_SRFI_4_INTERFACE@.
517 (libguile_srfi_srfi_13_14_la_LDFLAGS): use
518 @LIBGUILE_SRFI_SRFI_13_14_INTERFACE@.
519
520 2002-02-23 Neil Jerram <neil@ossau.uklinux.net>
521
522 * srfi-19.scm (priv:month-assoc): Correct numbers so that they
523 match the expectations of priv:year-day.
524
525 2002-02-22 Neil Jerram <neil@ossau.uklinux.net>
526
527 * srfi-19.scm (priv:year-day): Index into priv:month-assoc using
528 month number, not day number. (Thanks to Sébastien de Menten de
529 Horne for reporting the problem.)
530
531 2002-02-11 Marius Vollmer <marius.vollmer@uni-dortmund.de>
532
533 * srfi-14.c, srfi-4.c: Use scm_gc_malloc/scm_malloc and
534 scm_gc_free/free instead of scm_must_malloc and scm_must_free, as
535 appropriate.
536
537 2002-01-21 Thien-Thi Nguyen <ttn@giblet.glug.org>
538
539 * srfi-1.scm (count1, take-while): Rewrite to be tail-recursive.
540 Thanks to Panagiotis Vossos.
541
542 2002-01-20 Thien-Thi Nguyen <ttn@giblet.glug.org>
543
544 * srfi-1.scm (map1): Rewrite to be tail-recursive.
545 Thanks to Panagiotis Vossos for the bug report.
546
547 2001-12-16 Marius Vollmer <mvo@zagadka.ping.de>
548
549 * srfi-11.scm (let-values): Use `gensym' instead of `gentemp'.
550
551 2001-11-30 Neil Jerram <neil@ossau.uklinux.net>
552
553 * Makefile.am (ETAGS_ARGS): Added.
554
555 2001-11-12 Marius Vollmer <mvo@zagadka.ping.de>
556
557 * srfi-4.c: Use HAVE_LONG_LONG instead of HAVE_LONG_LONGS and test
558 it with `#ifdef' instead of `#if'.
559
560 2001-11-07 Neil Jerram <neil@ossau.uklinux.net>
561
562 * srfi-13.c (scm_string_unfold, scm_string_unfold_right),
563 srfi-14.c (scm_char_set_unfold, scm_char_set_unfold_x): Remove
564 superfluous whitespace at end of docstring lines.
565
566 2001-11-06 Thien-Thi Nguyen <ttn@glug.org>
567
568 * srfi-19.scm (time-monotonic->time-monotonic): Spurious;
569 remove from exports.
570
571 2001-11-04 Stefan Jahn <stefan@lkcc.org>
572
573 * srfi-13.h, srfi-14.h, srfi-4.h: Follow-up patch. Renamed
574 __FOO__ macros into FOO.
575
576 2001-11-03 Marius Vollmer <mvo@zagadka.ping.de>
577
578 * Makefile.am (libguile_srfi_srfi_4_la_LIBADD,
579 libguile_srfi_srfi_13_14_la_LIBADD): Refer to build directory, not
580 the source directory, for libguile.la. Thanks to Ken Raeburn.
581
582 2001-11-02 Marius Vollmer <mvo@zagadka.ping.de>
583
584 Support for native Win32. Thanks to Stefan Jahn!
585
586 * Makefile.am: Put `-no-undefined' into LDFLAGS to support linkers
587 which do not allow unresolved symbols inside shared libraries.
588
589 * srfi-13.h, srfi-14.h: Defined SCM_SRFI1314_API. Prefixed each
590 exported symbol with SCM_SRFI1314_API.
591
592 * srfi-4.h: Defined SCM_SRFI4_API. Prefixed each exported
593 symbol with SCM_SRFI4_API.
594
595 2001-10-21 Mikael Djurfeldt <mdj@linnaeus>
596
597 * srfi-2.scm, srfi-4.scm, srfi-8.scm, srfi-9.scm, srfi-10.scm,
598 srfi-11.scm, srfi-14.scm, srfi-16.scm: Move module the system
599 directives `export', `export-syntax', `re-export' and
600 `re-export-syntax' into the `define-module' form. This is the
601 recommended way of exporting bindings.
602
603 2001-09-22 Mikael Djurfeldt <mdj@linnaeus>
604
605 * srfi-19.scm (priv:split-real): Inserted missing call to
606 inexact->exact.
607
608 2001-09-21 Rob Browning <rlb@defaultvalue.org>
609
610 * srfi-14.h (SCM_CHARSET_GET): need 1L, not just 1 in "<<".
611
612 * srfi-14.c (SCM_CHARSET_SET): need 1L, not just 1 in "<<".
613 (scm_char_set_hash): val needs to be long, not just unsigned.
614 (scm_char_set): need 1L, not just 1 in "<<".
615 (scm_list_to_char_set): need 1L, not just 1 in "<<".
616 (scm_list_to_char_set_x): need 1L, not just 1 in "<<".
617 (scm_list_to_char_set_x): FUNC_NAME was wrong - added a _x.
618 (scm_string_to_char_set): string length var needed to be
619 scm_sizet, not int.
620 (scm_string_to_char_set): need 1L, not just 1 in "<<".
621 (scm_string_to_char_set_x): string length var needed to be
622 scm_sizet, not int.
623 (scm_string_to_char_set_x): need 1L, not just 1 in "<<".
624 (scm_char_set_filter): need 1L, not just 1 in "<<".
625 (scm_char_set_filter_x): need 1L, not just 1 in "<<".
626 (scm_ucs_range_to_char_set): need 1L, not just 1 in "<<".
627 (scm_ucs_range_to_char_set_x): need 1L, not just 1 in "<<".
628 (scm_char_set_adjoin): need 1L, not just 1 in "<<".
629 (scm_char_set_delete): need 1L, not just 1 in "<<".
630 (scm_char_set_adjoin_x): need 1L, not just 1 in "<<".
631 (scm_char_set_delete_x): need 1L, not just 1 in "<<".
632
633 2001-09-12 Gary Houston <ghouston@arglist.com>
634
635 * srfi-1.scm (filter): change "caller" to "filter" in check-arg-type.
636
637 2001-08-31 Dirk Herrmann <D.Herrmann@tu-bs.de>
638
639 * srfi-1.scm, srfi-13.scm: Remove the defines that were needed to
640 trick export from the beginning of the files.
641
642 2001-08-25 Thien-Thi Nguyen <ttn@revel.glug.org>
643
644 * srfi-19.scm (add-duration): Fix bug: Call `add-duration!' w/
645 two args. Thanks to Alex Shinn.
646
647 2001-08-25 Marius Vollmer <mvo@zagadka.ping.de>
648
649 * Makefile.am (AUTOMAKE_OPTIONS): Change "foreign" to "gnu".
650
651 2001-08-24 Thien-Thi Nguyen <ttn@revel.glug.org>
652
653 * srfi-13.h (scm_string_map, scm_string_map_x,
654 scm_string_for_each): Reverse order of first two args.
655 (scm_string_for_each_index): New proc.
656
657 * srfi-13.c (scm_string_for_each): Reverse order of first 2 args.
658 (scm_string_for_each_index): New func.
659
660 * srfi-13.scm (string-for-each-index): New exported proc.
661
662 Thanks to Alex Shinn.
663
664 2001-08-22 Mikael Djurfeldt <mdj@linnaeus.mit.edu>
665
666 * srfi-13.c (string-map): Swapped order of string and proc args to
667 conform with the srfi. (Thanks to Alex Shinn.)
668
669 2001-08-05 Gary Houston <ghouston@arglist.com>
670
671 * srfi-1.scm (check-arg-type, non-negative-integer?): a couple of new
672 internal definitions.
673 (list-tabulate, iota): check for bad arguments that otherwise
674 give weird output.
675 (filter): check for proper list, to avoid infinite recursion on
676 a circular list.
677
678 2001-08-04 Gary Houston <ghouston@arglist.com>
679
680 * srfi-1.scm (filter): replaced with a tail-recursive version.
681 (remove): implement using filter, to make it tail-recursive.
682
683 2001-07-31 Gary Houston <ghouston@arglist.com>
684
685 * srfi-14.c (scm_char_set_diff_plus_intersection): wasn't correctly
686 accounting for the (char-set-union cs2...) in the spec. i.e.,
687 (char-set-diff+intersection a) -> copy-of-a, empty-set
688 and the following are equivalent:
689 (char-set-diff+intersection a (char-set #\a) (char-set #\b))
690 (char-set-diff+intersection a (char-set #\a #\b))
691
692 (scm_char_set_xor_x): disabled the side-effecting code, since it
693 gives inconsistent results to scm_char_set_xor for the case
694 (char-set-xor! a a a).
695
696 (scm_char_set_diff_plus_intersection_x): added cs2 argument, since
697 two arguments are compulsory in final spec. also similar changes
698 as for scm_char_set_diff_plus_intersection.
699 * srfi-14.h (scm_char_set_diff_plus_intersection_x): added cs2.
700
701 2001-07-22 Gary Houston <ghouston@arglist.com>
702
703 * srfi-14.c (scm_char_set_intersection, scm_char_set_xor): remove
704 the compulsory cs1 arguments: all args are optional in final spec.
705
706 * srfi-14.h: declarations updated.
707
708 2001-07-18 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
709
710 * srfi-11.scm, srfi-8.scm: Update copyright notice.
711
712 2001-07-17 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
713
714 * srfi-14.c: Okay. Now I got it. Really. This time it's fixed.
715 Guaranteed. (Maybe)
716
717 * srfi-19.scm: Define `current-time' before exporting it.
718
719 2001-07-17 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
720
721 * srfi-14.c: Fix for bug caused by brain-malfunctioning on my
722 side. Bit sets were handled wrong because I couldn't tell bit
723 counts from byte counts. Also, the bit array should be 256 / 8
724 bytes long. Thank you, Gary!
725
726 Removed unnecessary protoype for scm_char_set_copy.
727
728 2001-07-16 Gary Houston <ghouston@arglist.com>
729
730 * srfi-14.scm: export string->char-set!, not string-char-set!.
731
732 * srfi-14.c (scm_char_set_ref, scm_char_set_cursor_next,
733 scm_end_of_char_set_p): reject negative cursor values.
734 (scm_list_to_char_set, scm_list_to_char_set_x): when reporting
735 type error in list component, omit the position (was always 1).
736
737 2001-07-16 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
738
739 (scm_char_set_map): Bug-fix: char-set-map was modifying the
740 argument instead of the return value.
741
742 2001-07-16 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
743
744 * srfi-14.c: Allocate correct memory size for charsets (32 bytes),
745 use this value for initializing and comparing charsets.
746 (scm_char_set_hash): Use ``better'' hash algorithm which produces
747 more values.
748
749 2001-07-15 Gary Houston <ghouston@arglist.com>
750
751 * srfi-14.c (scm_char_set_hash): recognise 0 instead of #f in the
752 opt arg to give default bound, as in final spec. don't allow
753 negative bounds.
754 (scm_char_set_hash): bug fix: was overrunning the buffer and
755 calculating based on garbage.
756 (scm_char_set_eq, scm_char_set_leq): fix argument number in error
757 reporting: wasn't incremented due to macro coding.
758 (scm_char_set): report argument number in error reporting: was
759 hard coded to 1. remove a couple of local variables.
760
761 2001-07-13 Marius Vollmer <mvo@zagadka.ping.de>
762
763 * srfi-2.scm (and-let*): Use `re-export-syntax' instead of
764 `export-syntax'.
765
766 2001-07-11 Gary Houston <ghouston@arglist.com>
767
768 * srfi-14.c (s_scm_char_set_eq): bug fix: (char-set=) should
769 return #t instead of giving wrong-number-of-arguments . take a
770 single "rest" argument. use memcmp instead of a loop to compare
771 the values.
772 (s_scm_char_set_leq): similarly, (char-set<=) should return #t.
773 take a single "rest" argument.
774 srfi-14.h: update the declarations.
775
776 2001-07-09 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
777
778 * README: Cleanup.
779
780 2001-07-06 Gary Houston <ghouston@arglist.com>
781
782 * srfi-1.scm (iota, map, for-each, list-index, member, delete,
783 delete!, assoc): roll back the previous change. instead place
784 dummy definitions in a deprecated block at the beginning as in
785 srfi-13.scm.
786
787 2001-07-06 Rob Browning <rlb@defaultvalue.org>
788
789 * srfi-19.scm (priv:locale-reader): don't need open-output-string.
790
791 2001-07-03 Gary Houston <ghouston@arglist.com>
792
793 * srfi-1.scm (iota, map, for-each, list-index, member, delete,
794 delete!, assoc): don't export until the new bindings have been
795 created. otherwise "export" thinks they are being re-exported and
796 a deprecation warning is produced.
797 (map-in-order): defined and exported, to support lists of unequal
798 length.
799
800 2001-07-03 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
801
802 * srfi-1.scm (list-tabulate): Do not go into infinite loop for
803 invalid arguments. Same fix for several other procedures (do not
804 use zero?, use <= 0).
805
806 2001-07-02 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
807
808 * srfi-1.scm: Replaced calls to `map' in several procedures to
809 calls to `map1'.
810 (map, for-each): New procedures, extended from R5RS.
811
812 2001-06-28 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
813
814 * srfi-4.c: Minor cleanups.
815
816 * srfi-14.c (scm_char_set_fold, scm_char_set_unfold)
817 (scm_char_set_unfold_x, scm_char_set_for_each)
818 (scm_char_set_map, scm_char_set_filter)
819 (scm_char_set_filter_x, scm_char_set_count)
820 (scm_char_set_every, scm_char_set_any): Replace calls to
821 scm_apply() with the corresponding scm_call_N() functions.
822
823 * srfi-14.c (scm_char_set_ref, scm_char_set_cursor_next)
824 (scm_char_set_unfold, scm_char_set_unfold_x)
825 (scm_char_set_map, scm_char_set_diff_plus_intersection)
826 (scm_char_set_diff_plus_intersection_x): Replace deprecated macros
827 SCM_LISTN with calls to scm_list_N().
828
829 * srfi-13.c (scm_string_tabulate, scm_string_map)
830 (scm_string_map_x, scm_string_unfold)
831 (scm_string_unfold_right): Replace deprecated macros SCM_LISTN
832 with calls to scm_list_N().
833
834 * srfi-13.c (scm_string_any, scm_string_every),
835 (scm_string_tabulate, scm_string_trim),
836 (scm_string_trim_right, scm_string_trim_both),
837 (scm_string_compare, scm_string_compare_ci),
838 (scm_string_indexS, scm_string_index_right),
839 (scm_string_skip, scm_string_skip_right, scm_string_count),
840 (scm_string_map, scm_string_map_x, scm_string_fold),
841 (scm_string_fold_right, scm_string_unfold),
842 (scm_string_unfold_right, scm_string_for_each),
843 (scm_string_filter, scm_string_delete): Replace calls to
844 scm_apply() with the corresponding scm_call_N() functions.
845
846 2001-06-27 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
847
848 * Makefile.am: Added SRFI-4 files in various places.
849
850 * srfi-4.c, srfi-4.h, srfi-4.scm: New files implementing SRFI-4.
851
852 2001-06-26 Dirk Herrmann <D.Herrmann@tu-bs.de>
853
854 * srfi-13.c (scm_string_copyS, scm_string_take, scm_string_drop,
855 scm_string_take_right, scm_string_drop_right, scm_string_trim,
856 scm_string_trim_right, scm_string_trim_both, scm_string_tokenize):
857 Use scm_mem2string instead of scm_makfromstr.
858
859 (scm_reverse_list_to_string, string_titlecase_x): Prefer
860 !SCM_<pred> over SCM_N<pred>.
861
862 2001-06-25 Marius Vollmer <mvo@zagadka.ping.de>
863
864 * srfi-8.scm: Use `re-export-syntax' to correctly re-export
865 `receive'.
866
867 2001-06-18 Matthias Koeppe <mkoeppe@mail.math.uni-magdeburg.de>
868
869 The SRFI-19 implementation was completely broken. Already the
870 reference implementation did not handle DST and time zones
871 properly and relied on non-R5RS-isms like passing reals to
872 `quotient'. For Guile, some additional fixes were needed because
873 of the incomplete numeric tower implementation. See also
874 srfi-19.test.
875
876 * srfi-19.scm (date-zone-offset): Fixed typo in export clause.
877 (add-duration): Renamed from priv:add-duration.
878 (priv:time-normalize!): Handle fractional nanoseconds; remove
879 duplicate definition.
880 (priv:current-time-tai): Fixed typo.
881 (time=?, time<=?): Fixed typos.
882 (time-tai->time-utc, time-utc->time-tai,
883 time-utc->time-monotonic): Use make-time-unnormalized instead of
884 make-time when uninitialized time fields are used.
885 (set-date-nanosecond!, set-date-second!, set-date-minute!,
886 set-date-hour!, set-date-day!, set-date-month!, set-date-year!,
887 set-date-zone-offset!): Define.
888 (priv:local-tz-offset): Take an extra argument in order to handle
889 DST effects.
890 (time-utc->date, time-tai->date, time-monotonic->date): Handle the
891 changed signature of priv:local-tz-offset. Don't pass non-integer
892 arguments to quotient (non-R5RS, not supported by Guile).
893 (date->time-utc): Ensure that seconds in a date structure are
894 always exact integers. Handle DST properly.
895 (current-date, julian-day->date, modified-julian-day->date):
896 Handle the changed signature of priv:local-tz-offset.
897 (julian-day->time-utc): Reverted earlier inexact->exact hack;
898 make-time now handles inexact arguments.
899 (priv:locale-print-time-zone): At least print the numerical time
900 zone.
901 (priv:integer-reader): Fixed named let iteration.
902 (priv:read-directives): Use set-date-month! instead of
903 priv:set-date-month! etc.
904 (string->date): Handle DST properly.
905
906 2001-06-14 Marius Vollmer <mvo@zagadka.ping.de>
907
908 * srfi-13.scm: Prevent `export' from re-exporting core bindings.
909
910 2001-06-07 Dirk Herrmann <D.Herrmann@tu-bs.de>
911
912 * srfi-14.c (charset_print): Mark unused parameters with
913 SCM_UNUSED.
914
915 2001-06-07 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
916
917 * srfi-1.scm (fold, fold-pair): Fixed a buggy call to apply.
918 (delete-duplicates): Now the first occurrence of an element is
919 retained, as required.
920 (member, assoc): Fixed wrong order of equality predicate
921 application.
922
923 2001-06-06 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
924
925 * README: Update.
926
927 * srfi-1.scm: New file.
928
929 2001-06-04 Marius Vollmer <mvo@zagadka.ping.de>
930
931 Added exception notice to all files.
932
933 2001-05-31 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
934
935 * srfi-14.scm, srfi-13.scm: Use `load-extension' for loading the
936 shared library.
937
938 2001-05-31 Michael Livshin <mlivshin@bigfoot.com>
939
940 * Makefile.am (MKDEP): copied from libguile/Makefile.am, just in
941 case.
942 (CLEANFILES): added *.x (and removed from DISTCLEANFILES)
943
944 2001-05-28 Michael Livshin <mlivshin@bigfoot.com>
945
946 * srfi-19.scm: removed a stray open parenthesis. (thanks to
947 Matthias Köppe for the report).
948
949 2001-05-23 Rob Browning <rlb@cs.utexas.edu>
950
951 * srfi-19.scm (:optional): renamed to optional to avoid reader
952 keywords conflict. Time passes... Removed :optional altogether
953 and just handle optional args directly. Thanks to Matthias Koeppe
954 for the report of this and the two bits below.
955 (priv:decode-julian-day-number): add inexact->exact for truncate
956 result.
957 (time-utc->date): add inexact->exact and floor so quotient will
958 work.
959
960 2001-05-22 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
961
962 * README: Update, document available SRFIs.
963
964 2001-05-21 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
965
966 * srfi-19.scm, srfi-17.scm, srfi-16.scm, srfi-14.scm, srfi-13.scm,
967 srfi-11.scm, srfi-10.scm, srfi-9.scm, srfi-8.scm, srfi-6.scm,
968 srfi-2.scm: Use `cond-expand-provide' for providing features to
969 `cond-expand'.
970
971 2001-05-20 Marius Vollmer <mvo@zagadka.ping.de>
972
973 * srfi-14.c (scm_c_init_srfi_14): Added "int" to declaration of
974 `initialized'.
975
976 2001-05-19 Marius Vollmer <mvo@zagadka.ping.de>
977
978 Avoid using module operations from C.
979
980 * srfi-13.c (scm_init_srfi_13_14): Removed.
981 * srfi-14.h, srfi-14.c (scm_c_init_srfi_14): New. Contains
982 initializations needed by C clients of srfi-14.
983 (scm_init_srfi_13, scm_init_srfi_14): Call it.
984 * srfi-13.scm: Call "scm_init_srfi_13" instead of
985 "scm_init_srfi_13_14".
986 * srfi-14.scm: Call "scm_init_srfi_14" instead of
987 "scm_init_srfi_13_14".
988
989 2001-05-16 Rob Browning <rlb@cs.utexas.edu>
990
991 * srfi-19.scm (priv:integer-reader-exact): minor cleanups.
992
993 2001-05-14 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
994
995 * Makefile.am (srfi_DATA): Added srfi-16.scm.
996
997 * srfi-16.scm: New file.
998
999 2001-05-10 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
1000
1001 * srfi-13.c (scm_string_delete): Logic was inversed for charset.
1002 Fixed.
1003
1004 2001-05-08 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
1005
1006 * srfi-13.c (scm_string_copyS): Fixed nasty bug.
1007
1008 2001-05-05 Rob Browning <rlb@cs.utexas.edu>
1009
1010 * Makefile.am (srfi_DATA): added srfi-19.scm.
1011
1012 * srfi-19.scm: New file - time/date SRFI. Thanks to Will
1013 Fitzgerald.
1014
1015 2001-05-02 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
1016
1017 * srfi-14.c, srfi-13.c: Added @bullet to various @itemize lists.
1018
1019 * srfi-10.scm: Typo fix.
1020
1021 2001-05-02 Rob Browning <rlb@cs.utexas.edu>
1022
1023 * srfi-11.scm (let-values): fix (a b c . d) case. Thanks Martin.
1024
1025 2001-05-02 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
1026
1027 * Makefile.am (srfi_DATA): Added srfi-10.scm and srfi-17.scm.
1028
1029 * srfi-10.scm: New file.
1030
1031 * srfi-17.scm: New file, contributed by Matthias Koeppe. Thanks a
1032 lot!
1033 Added `Commentary:' tag.
1034
1035 * srfi-9.scm: Added `Commentary:' tag.
1036
1037 2001-04-27 Rob Browning <rlb@cs.utexas.edu>
1038
1039 * srfi-13.h
1040 (scm_reverse_string_concatenate): renamed to
1041 scm_string_concatentate_reverse.
1042 (scm_reverse_string_concatenate_shared): renamed to
1043 scm_string_concatenate_reverse_shared.
1044
1045 2001-04-27 Gary Houston <ghouston@arglist.com>
1046
1047 * srfi-13.c (scm_init_srfi_13), srfi-14.c (scm_init_srfi_14):
1048 add "srfi/" to lines including .x files so they can be found
1049 when build_dir != src_dir.
1050
1051 2001-04-27 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
1052
1053 * Makefile.am (srfi_DATA): Added srfi-9.scm.
1054
1055 * srfi-9.scm: New file. Exports `define-record-type'.
1056
1057 2001-04-26 Rob Browning <rlb@cs.utexas.edu>
1058
1059 * Makefile.am (srfi_DATA): added srfi-6.scm.
1060 (srfi_DATA): added srfi-11.scm.
1061 (srfi_DATA): added srfi-8.scm.
1062 (srfi_DATA): added srfi-2.scm.
1063
1064 * srfi-11.scm: new file - exports let-values and let*-values.
1065
1066 * srfi-6.scm: new file - guile already has srfi-6 procedures
1067 loaded by default, so this is a dummy file right now.
1068
1069 * srfi-8.scm: new file - exports receive.
1070
1071 * srfi-2.scm: new file - just use/export (ice-9 and-let-star)
1072
1073 2001-04-26 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
1074
1075 Changed two procedure names to match final SRFI document. Thanks
1076 to Rob Browning for spotting this.
1077
1078 * srfi-13.scm (string-concatenate-reverse),
1079 (string-concatenate-reverse/shared): Rename from
1080 reverse-string-concatenate[/shared].
1081
1082 * srfi-13.c (scm_string_concatenate_reverse_shared): Renamed from
1083 scm_reverse_string_concatenate_shared.
1084 (scm_string_concatenate_reverse): Renamed from
1085 scm_reverse_string_concatenate.
1086
1087 2001-04-25 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
1088
1089 * configure.in, autogen.sh: Removed.
1090
1091 * srfi-13.c (scm_string_replace): Take sizeof (char) into account
1092 when using memmove().
1093
1094 * srfi-14.h: Added prototypes for all exported procedures..
1095
1096 * srfi-13.c: Include srfi-13.h
1097
1098 * srfi-13.h: New file containing the prototypes.
1099
1100 * Makefile.am: Removed guile-srfi.texi and info_TEXINFOS variable.
1101 (libguile_srfi_srfi_13_14_la_SOURCES): Added srfi-14.h, so it gets
1102 distributed.
1103 (libguile_srfi_srfi_13_14_la_SOURCES): Added srfi-13.h.
1104
1105 2001-04-24 Neil Jerram <neil@ossau.uklinux.net>
1106
1107 * Makefile.am: Fixed "srf-14.x" typo.
1108
1109 2001-04-24 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
1110
1111 * guile-srfi.texi: Removed, because merged with the GRM.
1112
1113 * guile-srfi.texi: The docs are now up to date with the
1114 implementation and have new introductory material.
1115
1116 2001-04-23 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
1117
1118 Integrated the guile-srfi package into the Guile distribution.
1119
1120 * srfi-13.c: All procedures so specified in the SRFI now accept
1121 character set arguments.
1122
1123 * Makefile.am: Snarfed some variables from the guile-readline
1124 directory.
1125
1126 * srfi-14.c, srfi-14.h: Add prefix SCM_ to exported macros.
1127
1128 * srfi-13.scm, srfi-14.scm, srfi-13.c, srfi-14.c, srfi-14.h,
1129 configure.in, Makefile.am: Added FSF copyright and Guile license
1130 information.
1131
1132 * srfi-13.c, srfi-14.c: Include srfi-14.h.
1133 (scm_init_srfi_13_14): Initialize the complete module, if not
1134 already done so.
1135
1136 * srfi-14.h: New file.
1137
1138 * srfi-13.scm, srfi-14.scm: Load new combined library.
1139
1140 * Makefile.am: Build only one library,
1141 `libguile-srfi-srfi-13-14.la'
1142
1143 2001-04-04 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
1144
1145 * guile-srfi.texi: Integrated the SRFI-14 documentation.
1146
1147 * srfi-14.c, srfi-14.scm: Made the procedures and variables
1148 compliant to the final SRFI document.
1149
1150 * Renamed the package to guile-srfi.
1151
1152 2001-04-03 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
1153
1154 * NEWS: New section for 0.0.3.
1155
1156 * configure.in, README, guile-srfi-13.texi: Bumped version number
1157 to 0.0.3.
1158
1159 * Released version 0.0.2.
1160
1161 * Makefile.am: Added rules for builing the SRFI-14 library.
1162
1163 * srfi-14.c, srfi-14.scm: New files, implementing SRFI-14
1164 (character set library).
1165
1166 2001-03-27 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
1167
1168 * README: Updated procedure and incompatibility list.
1169
1170 * srfi-13.c (string_upcase_x, scm_string_upcase_xS),
1171 (scm_string_upcase, string_downcase_x, scm_string_downcase_xS),
1172 (scm_string_downcaseS, string_titlecase_x),
1173 (scm_string_titlecase_x, scm_string_titlecase),
1174 (scm_string_fill_xS, scm_string_copyS, scm_string_to_listS): New
1175 procedures.
1176
1177 * srfi-13.scm: Export new case mapping procedures.
1178
1179 * guile-srfi-13.texi (What cannot be done): Removed case mapping
1180 procedures from incompatibility list.
1181 (Case Mapping): New section for case mapping procedures.
1182
1183 2001-03-26 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
1184
1185 * NEWS: New section for 0.0.2
1186
1187 * configure.in, README, guile-srfi-13.texi: Bumbed version number
1188 to 0.0.2
1189
1190 * Released version 0.0.1.
1191
1192 * README: Made procedure list up-to-date.
1193
1194 * guile-srfi-13.texi: Fixed typos, completed reference and added
1195 introductory blurb.
1196
1197 * srfi-13.c, srfi-13.scm: Filled in the last missing pieces.
1198
1199 2001-03-22 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
1200
1201 * Started guile-srfi-13 package. Files are copied from the
1202 guile-gdbm and slightly modified.