*** empty log message ***
[bpt/guile.git] / srfi / ChangeLog
CommitLineData
2c4df451
MG
12001-06-28 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
2
3 * srfi-4.c: Minor cleanups.
4
5 * srfi-14.c (scm_char_set_fold, scm_char_set_unfold)
6 (scm_char_set_unfold_x, scm_char_set_for_each)
7 (scm_char_set_map, scm_char_set_filter)
8 (scm_char_set_filter_x, scm_char_set_count)
9 (scm_char_set_every, scm_char_set_any): Replace calls to
10 scm_apply() with the corresponding scm_call_N() functions.
11
12 * srfi-14.c (scm_char_set_ref, scm_char_set_cursor_next)
13 (scm_char_set_unfold, scm_char_set_unfold_x)
14 (scm_char_set_map, scm_char_set_diff_plus_intersection)
15 (scm_char_set_diff_plus_intersection_x): Replace deprecated macros
16 SCM_LISTN with calls to scm_list_N().
17
18 * srfi-13.c (scm_string_tabulate, scm_string_map)
19 (scm_string_map_x, scm_string_unfold)
20 (scm_string_unfold_right): Replace deprecated macros SCM_LISTN
21 with calls to scm_list_N().
22
23 * srfi-13.c (scm_string_any, scm_string_every),
24 (scm_string_tabulate, scm_string_trim),
25 (scm_string_trim_right, scm_string_trim_both),
26 (scm_string_compare, scm_string_compare_ci),
27 (scm_string_indexS, scm_string_index_right),
28 (scm_string_skip, scm_string_skip_right, scm_string_count),
29 (scm_string_map, scm_string_map_x, scm_string_fold),
30 (scm_string_fold_right, scm_string_unfold),
31 (scm_string_unfold_right, scm_string_for_each),
32 (scm_string_filter, scm_string_delete): Replace calls to
33 scm_apply() with the corresponding scm_call_N() functions.
34
71ca65d9
MG
352001-06-27 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
36
37 * Makefile.am: Added SRFI-4 files in various places.
38
39 * srfi-4.c, srfi-4.h, srfi-4.scm: New files implementing SRFI-4.
40
36284627
DH
412001-06-26 Dirk Herrmann <D.Herrmann@tu-bs.de>
42
43 * srfi-13.c (scm_string_copyS, scm_string_take, scm_string_drop,
44 scm_string_take_right, scm_string_drop_right, scm_string_trim,
45 scm_string_trim_right, scm_string_trim_both, scm_string_tokenize):
46 Use scm_mem2string instead of scm_makfromstr.
47
48 (scm_reverse_list_to_string, string_titlecase_x): Prefer
49 !SCM_<pred> over SCM_N<pred>.
50
f6581113
MV
512001-06-25 Marius Vollmer <mvo@zagadka.ping.de>
52
53 * srfi-8.scm: Use `re-export-syntax' to correctly re-export
54 `receive'.
55
d0e06238
MV
562001-06-18 Matthias Koeppe <mkoeppe@mail.math.uni-magdeburg.de>
57
58 The SRFI-19 implementation was completely broken. Already the
59 reference implementation did not handle DST and time zones
60 properly and relied on non-R5RS-isms like passing reals to
61 `quotient'. For Guile, some additional fixes were needed because
62 of the incomplete numeric tower implementation. See also
63 srfi-19.test.
64
65 * srfi-19.scm (date-zone-offset): Fixed typo in export clause.
66 (add-duration): Renamed from priv:add-duration.
67 (priv:time-normalize!): Handle fractional nanoseconds; remove
68 duplicate definition.
69 (priv:current-time-tai): Fixed typo.
70 (time=?, time<=?): Fixed typos.
71 (time-tai->time-utc, time-utc->time-tai,
72 time-utc->time-monotonic): Use make-time-unnormalized instead of
73 make-time when uninitialized time fields are used.
74 (set-date-nanosecond!, set-date-second!, set-date-minute!,
75 set-date-hour!, set-date-day!, set-date-month!, set-date-year!,
76 set-date-zone-offset!): Define.
77 (priv:local-tz-offset): Take an extra argument in order to handle
78 DST effects.
79 (time-utc->date, time-tai->date, time-monotonic->date): Handle the
80 changed signature of priv:local-tz-offset. Don't pass non-integer
81 arguments to quotient (non-R5RS, not supported by Guile).
82 (date->time-utc): Ensure that seconds in a date structure are
83 always exact integers. Handle DST properly.
84 (current-date, julian-day->date, modified-julian-day->date):
85 Handle the changed signature of priv:local-tz-offset.
86 (julian-day->time-utc): Reverted earlier inexact->exact hack;
87 make-time now handles inexact arguments.
88 (priv:locale-print-time-zone): At least print the numerical time
89 zone.
90 (priv:integer-reader): Fixed named let iteration.
91 (priv:read-directives): Use set-date-month! instead of
92 priv:set-date-month! etc.
93 (string->date): Handle DST properly.
94
0f002b27
MV
952001-06-14 Marius Vollmer <mvo@zagadka.ping.de>
96
97 * srfi-13.scm: Prevent `export' from re-exporting core bindings.
98
e81d98ec
DH
992001-06-07 Dirk Herrmann <D.Herrmann@tu-bs.de>
100
101 * srfi-14.c (charset_print): Mark unused parameters with
102 SCM_UNUSED.
103
563058ef
MG
1042001-06-07 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
105
106 * srfi-1.scm (fold, fold-pair): Fixed a buggy call to apply.
107 (delete-duplicates): Now the first occurrence of an element is
108 retained, as required.
109 (member, assoc): Fixed wrong order of equality predicate
110 application.
563058ef 111
e9680547
MG
1122001-06-06 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
113
114 * README: Update.
115
116 * srfi-1.scm: New file.
117
f480396b
MV
1182001-06-04 Marius Vollmer <mvo@zagadka.ping.de>
119
120 Added exception notice to all files.
121
dd22a80a
MG
1222001-05-31 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
123
124 * srfi-14.scm, srfi-13.scm: Use `load-extension' for loading the
125 shared library.
126
998c3141
ML
1272001-05-31 Michael Livshin <mlivshin@bigfoot.com>
128
129 * Makefile.am (MKDEP): copied from libguile/Makefile.am, just in
130 case.
131 (CLEANFILES): added *.x (and removed from DISTCLEANFILES)
132
6b0d28a3
ML
1332001-05-28 Michael Livshin <mlivshin@bigfoot.com>
134
135 * srfi-19.scm: removed a stray open parenthesis. (thanks to
136