*** empty log message ***
[bpt/guile.git] / srfi / ChangeLog
1 2001-06-25 Marius Vollmer <mvo@zagadka.ping.de>
2
3 * srfi-8.scm: Use `re-export-syntax' to correctly re-export
4 `receive'.
5
6 2001-06-18 Matthias Koeppe <mkoeppe@mail.math.uni-magdeburg.de>
7
8 The SRFI-19 implementation was completely broken. Already the
9 reference implementation did not handle DST and time zones
10 properly and relied on non-R5RS-isms like passing reals to
11 `quotient'. For Guile, some additional fixes were needed because
12 of the incomplete numeric tower implementation. See also
13 srfi-19.test.
14
15 * srfi-19.scm (date-zone-offset): Fixed typo in export clause.
16 (add-duration): Renamed from priv:add-duration.
17 (priv:time-normalize!): Handle fractional nanoseconds; remove
18 duplicate definition.
19 (priv:current-time-tai): Fixed typo.
20 (time=?, time<=?): Fixed typos.
21 (time-tai->time-utc, time-utc->time-tai,
22 time-utc->time-monotonic): Use make-time-unnormalized instead of
23 make-time when uninitialized time fields are used.
24 (set-date-nanosecond!, set-date-second!, set-date-minute!,
25 set-date-hour!, set-date-day!, set-date-month!, set-date-year!,
26 set-date-zone-offset!): Define.
27 (priv:local-tz-offset): Take an extra argument in order to handle
28 DST effects.
29 (time-utc->date, time-tai->date, time-monotonic->date): Handle the
30 changed signature of priv:local-tz-offset. Don't pass non-integer
31 arguments to quotient (non-R5RS, not supported by Guile).
32 (date->time-utc): Ensure that seconds in a date structure are
33 always exact integers. Handle DST properly.
34 (current-date, julian-day->date, modified-julian-day->date):
35 Handle the changed signature of priv:local-tz-offset.
36 (julian-day->time-utc): Reverted earlier inexact->exact hack;
37 make-time now handles inexact arguments.
38 (priv:locale-print-time-zone): At least print the numerical time
39 zone.
40 (priv:integer-reader): Fixed named let iteration.
41 (priv:read-directives): Use set-date-month! instead of
42 priv:set-date-month! etc.
43 (string->date): Handle DST properly.
44
45 2001-06-14 Marius Vollmer <mvo@zagadka.ping.de>
46
47 * srfi-13.scm: Prevent `export' from re-exporting core bindings.
48
49 2001-06-07 Dirk Herrmann <D.Herrmann@tu-bs.de>
50
51 * srfi-14.c (charset_print): Mark unused parameters with
52 SCM_UNUSED.
53
54 2001-06-07 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
55
56 * srfi-1.scm (fold, fold-pair): Fixed a buggy call to apply.
57 (delete-duplicates): Now the first occurrence of an element is
58 retained, as required.
59 (member, assoc): Fixed wrong order of equality predicate
60 application.
61
62 2001-06-06 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
63
64 * README: Update.
65
66 * srfi-1.scm: New file.
67
68 2001-06-04 Marius Vollmer <mvo@zagadka.ping.de>
69
70 Added exception notice to all files.
71
72 2001-05-31 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
73
74 * srfi-14.scm, srfi-13.scm: Use `load-extension' for loading the
75 shared library.
76
77 2001-05-31 Michael Livshin <mlivshin@bigfoot.com>
78
79 * Makefile.am (MKDEP): copied from libguile/Makefile.am, just in
80 case.
81 (CLEANFILES): added *.x (and removed from DISTCLEANFILES)
82
83 2001-05-28 Michael Livshin <mlivshin@bigfoot.com>
84
85 * srfi-19.scm: removed a stray open parenthesis. (thanks to
86 Matthias Köppe for the report).
87
88 2001-05-23 Rob Browning <rlb@cs.utexas.edu>
89
90 * srfi-19.scm (:optional): renamed to optional to avoid reader
91 keywords conflict. Time passes... Removed :optional altogether
92 and just handle optional args directly. Thanks to Matthias Koeppe
93 for the report of this and the two bits below.
94 (priv:decode-julian-day-number): add inexact->exact for truncate
95 result.
96 (time-utc->date): add inexact->exact and floor so quotient will
97 work.
98
99 2001-05-22 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
100
101 * README: Update, document available SRFIs.
102
103 2001-05-21 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
104
105 * srfi-19.scm, srfi-17.scm, srfi-16.scm, srfi-14.scm, srfi-13.scm,
106 srfi-11.scm, srfi-10.scm, srfi-9.scm, srfi-8.scm, srfi-6.scm,
107 srfi-2.scm: Use `cond-expand-provide' for providing features to
108 `cond-expand'.
109
110 2001-05-20 Marius Vollmer <mvo@zagadka.ping.de>
111
112 * srfi-14.c (scm_c_init_srfi_14): Added "int" to declaration of
113 `initialized'.
114
115 2001-05-19 Marius Vollmer <mvo@zagadka.ping.de>
116
117 Avoid using module operations from C.
118
119 * srfi-13.c (scm_init_srfi_13_14): Removed.
120 * srfi-14.h, srfi-14.c (scm_c_init_srfi_14): New. Contains
121 initializations needed by C clients of srfi-14.
122 (scm_init_srfi_13, scm_init_srfi_14): Call it.
123 * srfi-13.scm: Call "scm_init_srfi_13" instead of
124 "scm_init_srfi_13_14".
125 * srfi-14.scm: Call "scm_init_srfi_14" instead of
126 "scm_init_srfi_13_14".
127
128 2001-05-16 Rob Browning <rlb@cs.utexas.edu>
129
130 * srfi-19.scm (priv:integer-reader-exact): minor cleanups.
131
132 2001-05-14 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
133
134 * Makefile.am (srfi_DATA): Added srfi-16.scm.
135
136 * srfi-16.scm: New file.
137
138 2001-05-10 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
139
140 * srfi-13.c (scm_string_delete): Logic was inversed for charset.
141 Fixed.
142
143 2001-05-08 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
144
145 * srfi-13.c (scm_string_copyS): Fixed nasty bug.
146
147 2001-05-05 Rob Browning <rlb@cs.utexas.edu>
148
149 * Makefile.am (srfi_DATA): added srfi-19.scm.
150
151 * srfi-19.scm: New file - time/date SRFI. Thanks to Will
152 Fitzgerald.
153
154 2001-05-02 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
155
156 * srfi-14.c, srfi-13.c: Added @bullet to various @itemize lists.
157
158 * srfi-10.scm: Typo fix.
159
160 2001-05-02 Rob Browning <rlb@cs.utexas.edu>
161
162 * srfi-11.scm (let-values): fix (a b c . d) case. Thanks Martin.
163
164 2001-05-02 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
165
166 * Makefile.am (srfi_DATA): Added srfi-10.scm and srfi-17.scm.
167
168 * srfi-10.scm: New file.
169
170 * srfi-17.scm: New file, contributed by Matthias Koeppe. Thanks a
171 lot!
172 Added `Commentary:' tag.
173
174 * srfi-9.scm: Added `Commentary:' tag.
175
176 2001-04-27 Rob Browning <rlb@cs.utexas.edu>
177
178 * srfi-13.h
179 (scm_reverse_string_concatenate): renamed to
180 scm_string_concatentate_reverse.
181 (scm_reverse_string_concatenate_shared): renamed to
182 scm_string_concatenate_reverse_shared.
183
184 2001-04-27 Gary Houston <ghouston@arglist.com>
185
186 * srfi-13.c (scm_init_srfi_13), srfi-14.c (scm_init_srfi_14):
187 add "srfi/" to lines including .x files so they can be found
188 when build_dir != src_dir.
189
190 2001-04-27 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
191
192 * Makefile.am (srfi_DATA): Added srfi-9.scm.
193
194 * srfi-9.scm: New file. Exports `define-record-type'.
195
196 2001-04-26 Rob Browning <rlb@cs.utexas.edu>
197
198 * Makefile.am (srfi_DATA): added srfi-6.scm.
199 (srfi_DATA): added srfi-11.scm.
200 (srfi_DATA): added srfi-8.scm.
201 (srfi_DATA): added srfi-2.scm.
202
203 * srfi-11.scm: new file - exports let-values and let*-values.
204
205 * srfi-6.scm: new file - guile already has srfi-6 procedures
206 loaded by default, so this is a dummy file right now.
207
208 * srfi-8.scm: new file - exports receive.
209
210 * srfi-2.scm: new file - just use/export (ice-9 and-let-star)
211
212 2001-04-26 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
213
214 Changed two procedure names to match final SRFI document. Thanks
215 to Rob Browning for spotting this.
216
217 * srfi-13.scm (string-concatenate-reverse),
218 (string-concatenate-reverse/shared): Rename from
219 reverse-string-concatenate[/shared].
220
221 * srfi-13.c (scm_string_concatenate_reverse_shared): Renamed from
222 scm_reverse_string_concatenate_shared.
223 (scm_string_concatenate_reverse): Renamed from
224 scm_reverse_string_concatenate.
225
226 2001-04-25 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
227
228 * configure.in, autogen.sh: Removed.
229
230 * srfi-13.c (scm_string_replace): Take sizeof (char) into account
231 when using memmove().
232
233 * srfi-14.h: Added prototypes for all exported procedures..
234
235 * srfi-13.c: Include srfi-13.h
236
237 * srfi-13.h: New file containing the prototypes.
238
239 * Makefile.am: Removed guile-srfi.texi and info_TEXINFOS variable.
240 (libguile_srfi_srfi_13_14_la_SOURCES): Added srfi-14.h, so it gets
241 distributed.
242 (libguile_srfi_srfi_13_14_la_SOURCES): Added srfi-13.h.
243
244 2001-04-24 Neil Jerram <neil@ossau.uklinux.net>
245
246 * Makefile.am: Fixed "srf-14.x" typo.
247
248 2001-04-24 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
249
250 * guile-srfi.texi: Removed, because merged with the GRM.
251
252 * guile-srfi.texi: The docs are now up to date with the
253 implementation and have new introductory material.
254
255 2001-04-23 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
256
257 Integrated the guile-srfi package into the Guile distribution.
258
259 * srfi-13.c: All procedures so specified in the SRFI now accept
260 character set arguments.
261
262 * Makefile.am: Snarfed some variables from the guile-readline
263 directory.
264
265 * srfi-14.c, srfi-14.h: Add prefix SCM_ to exported macros.
266
267 * srfi-13.scm, srfi-14.scm, srfi-13.c, srfi-14.c, srfi-14.h,
268 configure.in, Makefile.am: Added FSF copyright and Guile license
269 information.
270
271 * srfi-13.c, srfi-14.c: Include srfi-14.h.
272 (scm_init_srfi_13_14): Initialize the complete module, if not
273 already done so.
274
275 * srfi-14.h: New file.
276
277 * srfi-13.scm, srfi-14.scm: Load new combined library.
278
279 * Makefile.am: Build only one library,
280 `libguile-srfi-srfi-13-14.la'
281
282 2001-04-04 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
283
284 * guile-srfi.texi: Integrated the SRFI-14 documentation.
285
286 * srfi-14.c, srfi-14.scm: Made the procedures and variables
287 compliant to the final SRFI document.
288
289 * Renamed the package to guile-srfi.
290
291 2001-04-03 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
292
293 * NEWS: New section for 0.0.3.
294
295 * configure.in, README, guile-srfi-13.texi: Bumped version number
296 to 0.0.3.
297
298 * Released version 0.0.2.
299
300 * Makefile.am: Added rules for builing the SRFI-14 library.
301
302 * srfi-14.c, srfi-14.scm: New files, implementing SRFI-14
303 (character set library).
304
305 2001-03-27 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
306
307 * README: Updated procedure and incompatibility list.
308
309 * srfi-13.c (string_upcase_x, scm_string_upcase_xS),
310 (scm_string_upcase, string_downcase_x, scm_string_downcase_xS),
311 (scm_string_downcaseS, string_titlecase_x),
312 (scm_string_titlecase_x, scm_string_titlecase),
313 (scm_string_fill_xS, scm_string_copyS, scm_string_to_listS): New
314 procedures.
315
316 * srfi-13.scm: Export new case mapping procedures.
317
318 * guile-srfi-13.texi (What cannot be done): Removed case mapping
319 procedures from incompatibility list.
320 (Case Mapping): New section for case mapping procedures.
321
322 2001-03-26 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
323
324 * NEWS: New section for 0.0.2
325
326 * configure.in, README, guile-srfi-13.texi: Bumbed version number
327 to 0.0.2
328
329 * Released version 0.0.1.
330
331 * README: Made procedure list up-to-date.
332
333 * guile-srfi-13.texi: Fixed typos, completed reference and added
334 introductory blurb.
335
336 * srfi-13.c, srfi-13.scm: Filled in the last missing pieces.
337
338 2001-03-22 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
339
340 * Started guile-srfi-13 package. Files are copied from the
341 guile-gdbm and slightly modified.