(date-week-number): Add tests.
[bpt/guile.git] / srfi / ChangeLog
index 9a75116..aadf804 100644 (file)
@@ -1,8 +1,411 @@
+2003-07-29  Kevin Ryde  <user42@zip.com.au>
+
+       * srfi-1.c, srfi-1.scm (concatenate, concatenate!): Use scm_append and
+       scm_append_x.
+
+       * srfi-1.c, srfi-1.h, srfi-1.scm (length+): Rewrite using scm_ilength.
+
+       * srfi-34.scm: Add cond-expand-provide srfi-34.
+
+2003-07-14  Matthias Koeppe  <mkoeppe@mail.math.uni-magdeburg.de>
+
+       * srfi-1.c, srfi-1.h (scm_srfi1_partition), srfi-1.scm (partition):
+       Re-implement in C to avoid stack overflows for long input lists.
+
+2003-07-08  Kevin Ryde  <user42@zip.com.au>
+
+       * srfi-1.c, srfi-1.h (scm_srfi1_delete, scm_srfi1_delete_x,
+       scm_srfi1_delete_duplicates, scm_srfi1_delete_duplicates_x): New
+       functions.  scm_srfi1_delete_x is derived from scm_delete_x.
+       * srfi-1.scm (delete, delete!, delete-duplicates, delete-duplicates!):
+       Remove.
+
+2003-06-07  Kevin Ryde  <user42@zip.com.au>
+
+       * srfi-6.scm: #:re-export open-input-string, open-output-string and
+       get-output-string, for the benefit of applications wanting to use
+       #:select on the module.
+
+2003-05-29  Stefan Jahn  <stefan@lkcc.org>
+
+       * Makefile.am (libguile_srfi_srfi_1_la_LDFLAGS, 
+       libguile_srfi_srfi_4_la_LDFLAGS, 
+       libguile_srfi_srfi_13_14__la_LDFLAGS): Added the -no-undefined
+       option for the mingw32 build.
+
+2003-05-13  Kevin Ryde  <user42@zip.com.au>
+
+       * srfi-1.scm (delete): Fix predicate arg order to match srfi-1 spec.
+
+2003-05-10  Kevin Ryde  <user42@zip.com.au>
+
+       * srfi-1.scm (take): Make this an alias for list-head.
+       (drop): Make this an alias for list-tail.
+
+2003-04-30  Neil Jerram  <neil@ossau.uklinux.net>
+
+       * srfi-34.scm: New file.
+
+2003-04-23  Marius Vollmer  <mvo@zagadka.de>
+
+       * srfi-1.scm: Removed stray "o" from exports list.
+
+2003-04-21  Dirk Herrmann  <D.Herrmann@tu-bs.de>
+
+       * srfi-1.c (srfi1_ilength): Prefer !SCM_CONSP over SCM_NCONSP.
+       Now, guile itself does not include any calls to SCM_NCONSP any
+       more.
+
+2003-04-05  Marius Vollmer  <mvo@zagadka.de>
+
+        * Changed license terms to the plain LGPL thru-out.
+
+2003-03-25  Rob Browning  <rlb@defaultvalue.org>
+
+       * srfi-4.c: replace typedefs for basic types with typedefs using
+       new standard int types (i.e. scm_t_uint8, etc.) -- should probably
+       remove typedefs altogether later.
+
+2003-03-24  Mikael Djurfeldt  <djurfeldt@nada.kth.se>
+
+       * srfi-1.scm: Re-export all srfi-1 bindings implemented by the
+       core.  (Thanks to Kevin Ryde.)
+
+2003-03-12  Mikael Djurfeldt  <djurfeldt@nada.kth.se>
+
+       * srfi-13.scm: Mark replacements.
+
+       * srfi-17.scm: Mark replacements.
+
+2003-03-11  Mikael Djurfeldt  <djurfeldt@nada.kth.se>
+
+       * srfi-1.scm (iota, map, for-each, map-in-order, list-index,
+       member, delete, delete!, assoc): Marked as replacements.
+       (filter, filter!): Removed.  (Now implemented in the core.)
+
+2003-03-06  Mikael Djurfeldt  <djurfeldt@nada.kth.se>
+
+       * srfi-1.c (scm_init_srfi_1): Extend root module map and for-each
+       with the versions in this module using
+       scm_c_extend_primitive_generic.
+
+2003-02-03  Mikael Djurfeldt  <djurfeldt@nada.kth.se>
+
+       * srfi-1.c (srfi1_for_each): Corrected argument checking for the
+       case of two argument lists.  (Thanks to Kevin Ryde.)
+
+2002-12-08  Rob Browning  <rlb@defaultvalue.org>
+
+       * Makefile.am (srfidir): VERSION -> GUILE_EFFECTIVE_VERSION.
+
+2002-12-02  Marius Vollmer  <mvo@zagadka.ping.de>
+
+       * Makefile.am (srfiinclude_HEADERS): Added srfi-1.h.
+
+2002-12-01  Mikael Djurfeldt  <mdj@linnaeus>
+
+       * srfi-1.scm: Load srfi-1 extension.
+       (map, map-in-order, for-each, member, assoc): Replaced by
+       primitives in srfi-1.c.
+       (map1): Defined as `map'.
+
+       * Makefile.am: Added rules for srfi-1.c.
+
+       * srfi-1.c, srfi-1.h: New files.
+
+2002-05-06  Marius Vollmer  <mvo@zagadka.ping.de>
+
+       * srfi-13.c (scm_string_tokenize): Instead of using "isgraphic" as
+       the subtitute for char-set:graphic when then token-set hsa been
+       defaulted, grab the real char-set:graphic from (srfi srfi-14).
+
+       * srfi-14.h (SCM_CHARSET_GET): Cast IDX to unsigned char so that
+       it works for 8-bit characters.  Thanks to Matthias Koeppe!  No,
+       make that "Köppe".
+
+2002-04-24  Marius Vollmer  <mvo@zagadka.ping.de>
+
+       * srfi-13.c (s_scm_string_tokenize): Only take character sets as
+       the second arg.  Collect characters belonging to this set into
+       tokens (as specified by the SRFI), instead of splitting at these
+       characters.  Default to an equivalent of char-set:graphic instead
+       of everything-but-whitespace.  Thanks to Matthias Koeppe!
+
+2002-04-10  Rob Browning  <rlb@defaultvalue.org>
+
+       * .cvsignore: add *.c.clean.c.
+
+2002-03-27  Thien-Thi Nguyen  <ttn@giblet.glug.org>
+
+       * srfi-1.scm, srfi-13.scm, srfi-17.scm, srfi-4.scm, srfi-9.scm,
+       srfi-10.scm, srfi-14.scm, srfi-19.scm, srfi-6.scm, srfi-11.scm,
+       srfi-16.scm, srfi-2.scm, srfi-8.scm: Update copyright.
+       Point to manual in commentary; nfc.
+
+2002-03-24  Marius Vollmer  <mvo@zagadka.ping.de>
+
+       * Makefile.am (.c.x): Pass "-o $@" to guile-snarf.
+
+2002-03-13  Thien-Thi Nguyen  <ttn@giblet.glug.org>
+
+       * srfi-13.c, srfi-14.c, srfi-4.c:
+       Retire inclusion guard macro SCM_MAGIC_SNARFER.
+
+       * Makefile.am (snarfcppopts): New var.
+       (.c.x): Use $(snarfcppopts). Rework guile-snarf usage.
+
+2002-03-11  Marius Vollmer  <mvo@zagadka.ping.de>
+
+       * srfi-13.c (string_titlecase_x): Treat characters as unsigned so
+       that 8-bit chars work.  Thanks to David Pirotte!
+
+2002-02-24  Rob Browning  <rlb@defaultvalue.org>
+
+       * Makefile.am (libguile_srfi_srfi_4_la_LDFLAGS): use
+       @LIBGUILE_SRFI_SRFI_4_INTERFACE@.
+       (libguile_srfi_srfi_13_14_la_LDFLAGS): use
+       @LIBGUILE_SRFI_SRFI_13_14_INTERFACE@.
+
+2002-02-23  Neil Jerram  <neil@ossau.uklinux.net>
+
+       * srfi-19.scm (priv:month-assoc): Correct numbers so that they
+       match the expectations of priv:year-day.
+
+2002-02-22  Neil Jerram  <neil@ossau.uklinux.net>
+
+       * srfi-19.scm (priv:year-day): Index into priv:month-assoc using
+       month number, not day number.  (Thanks to Sébastien de Menten de
+       Horne for reporting the problem.)
+
+2002-02-11  Marius Vollmer  <marius.vollmer@uni-dortmund.de>
+
+       * srfi-14.c, srfi-4.c: Use scm_gc_malloc/scm_malloc and
+       scm_gc_free/free instead of scm_must_malloc and scm_must_free, as
+       appropriate.
+
+2002-01-21  Thien-Thi Nguyen  <ttn@giblet.glug.org>
+
+       * srfi-1.scm (count1, take-while): Rewrite to be tail-recursive.
+       Thanks to Panagiotis Vossos.
+
+2002-01-20  Thien-Thi Nguyen  <ttn@giblet.glug.org>
+
+       * srfi-1.scm (map1): Rewrite to be tail-recursive.
+       Thanks to Panagiotis Vossos for the bug report.
+
+2001-12-16  Marius Vollmer  <mvo@zagadka.ping.de>
+
+       * srfi-11.scm (let-values): Use `gensym' instead of `gentemp'.
+
+2001-11-30  Neil Jerram  <neil@ossau.uklinux.net>
+
+       * Makefile.am (ETAGS_ARGS): Added.
+
+2001-11-12  Marius Vollmer  <mvo@zagadka.ping.de>
+
+       * srfi-4.c: Use HAVE_LONG_LONG instead of HAVE_LONG_LONGS and test
+       it with `#ifdef' instead of `#if'.
+
+2001-11-07  Neil Jerram  <neil@ossau.uklinux.net>
+
+       * srfi-13.c (scm_string_unfold, scm_string_unfold_right),
+       srfi-14.c (scm_char_set_unfold, scm_char_set_unfold_x): Remove
+       superfluous whitespace at end of docstring lines.
+
+2001-11-06  Thien-Thi Nguyen  <ttn@glug.org>
+
+       * srfi-19.scm (time-monotonic->time-monotonic): Spurious;
+       remove from exports.
+
+2001-11-04  Stefan Jahn  <stefan@lkcc.org>
+
+       * srfi-13.h, srfi-14.h, srfi-4.h: Follow-up patch.  Renamed
+       __FOO__ macros into FOO.
+
+2001-11-03  Marius Vollmer  <mvo@zagadka.ping.de>
+
+       * Makefile.am (libguile_srfi_srfi_4_la_LIBADD,
+       libguile_srfi_srfi_13_14_la_LIBADD): Refer to build directory, not
+       the source directory, for libguile.la.  Thanks to Ken Raeburn.
+
+2001-11-02  Marius Vollmer  <mvo@zagadka.ping.de>
+
+       Support for native Win32.  Thanks to Stefan Jahn!
+
+        * Makefile.am:  Put `-no-undefined' into LDFLAGS to support linkers
+        which do not allow unresolved symbols inside shared libraries.
+
+        * srfi-13.h, srfi-14.h: Defined SCM_SRFI1314_API.  Prefixed each
+        exported symbol with SCM_SRFI1314_API.
+
+        * srfi-4.h: Defined SCM_SRFI4_API.  Prefixed each exported
+        symbol with SCM_SRFI4_API.
+
+2001-10-21  Mikael Djurfeldt  <mdj@linnaeus>
+
+       * srfi-2.scm, srfi-4.scm, srfi-8.scm, srfi-9.scm, srfi-10.scm,
+       srfi-11.scm, srfi-14.scm, srfi-16.scm: Move module the system
+       directives `export', `export-syntax', `re-export' and
+       `re-export-syntax' into the `define-module' form.  This is the
+       recommended way of exporting bindings.
+
+2001-09-22  Mikael Djurfeldt  <mdj@linnaeus>
+
+       * srfi-19.scm (priv:split-real): Inserted missing call to
+       inexact->exact.
+
+2001-09-21  Rob Browning  <rlb@defaultvalue.org>
+
+       * srfi-14.h (SCM_CHARSET_GET): need 1L, not just 1 in "<<".
+
+       * srfi-14.c (SCM_CHARSET_SET): need 1L, not just 1 in "<<".
+       (scm_char_set_hash): val needs to be long, not just unsigned.
+       (scm_char_set): need 1L, not just 1 in "<<".
+       (scm_list_to_char_set): need 1L, not just 1 in "<<".
+       (scm_list_to_char_set_x): need 1L, not just 1 in "<<".
+       (scm_list_to_char_set_x): FUNC_NAME was wrong - added a _x.
+       (scm_string_to_char_set): string length var needed to be
+       scm_sizet, not int.
+       (scm_string_to_char_set): need 1L, not just 1 in "<<".
+       (scm_string_to_char_set_x): string length var needed to be
+       scm_sizet, not int.
+       (scm_string_to_char_set_x): need 1L, not just 1 in "<<".
+       (scm_char_set_filter): need 1L, not just 1 in "<<".
+       (scm_char_set_filter_x): need 1L, not just 1 in "<<".
+       (scm_ucs_range_to_char_set): need 1L, not just 1 in "<<".
+       (scm_ucs_range_to_char_set_x): need 1L, not just 1 in "<<".
+       (scm_char_set_adjoin): need 1L, not just 1 in "<<".
+       (scm_char_set_delete): need 1L, not just 1 in "<<".
+       (scm_char_set_adjoin_x): need 1L, not just 1 in "<<".
+       (scm_char_set_delete_x): need 1L, not just 1 in "<<".
+
+2001-09-12  Gary Houston  <ghouston@arglist.com>
+
+       * srfi-1.scm (filter): change "caller" to "filter" in check-arg-type.
+
+2001-08-31  Dirk Herrmann  <D.Herrmann@tu-bs.de>
+
+       * srfi-1.scm, srfi-13.scm: Remove the defines that were needed to
+       trick export from the beginning of the files.
+
+2001-08-25  Thien-Thi Nguyen  <ttn@revel.glug.org>
+
+       * srfi-19.scm (add-duration): Fix bug: Call `add-duration!' w/
+       two args.  Thanks to Alex Shinn.
+
+2001-08-25  Marius Vollmer  <mvo@zagadka.ping.de>
+
+       * Makefile.am (AUTOMAKE_OPTIONS): Change "foreign" to "gnu".
+
+2001-08-24  Thien-Thi Nguyen  <ttn@revel.glug.org>
+
+       * srfi-13.h (scm_string_map, scm_string_map_x,
+       scm_string_for_each): Reverse order of first two args.
+       (scm_string_for_each_index): New proc.
+
+       * srfi-13.c (scm_string_for_each): Reverse order of first 2 args.
+       (scm_string_for_each_index): New func.
+
+       * srfi-13.scm (string-for-each-index): New exported proc.
+
+       Thanks to Alex Shinn.
+
+2001-08-22  Mikael Djurfeldt  <mdj@linnaeus.mit.edu>
+
+       * srfi-13.c (string-map): Swapped order of string and proc args to
+       conform with the srfi.  (Thanks to Alex Shinn.)
+
+2001-08-05  Gary Houston  <ghouston@arglist.com>
+
+       * srfi-1.scm (check-arg-type, non-negative-integer?): a couple of new
+       internal definitions.
+       (list-tabulate, iota): check for bad arguments that otherwise
+       give weird output.
+       (filter): check for proper list, to avoid infinite recursion on
+       a circular list.
+
+2001-08-04  Gary Houston  <ghouston@arglist.com>
+
+       * srfi-1.scm (filter): replaced with a tail-recursive version.
+       (remove): implement using filter, to make it tail-recursive.
+
+2001-07-31  Gary Houston  <ghouston@arglist.com>
+
+       * srfi-14.c (scm_char_set_diff_plus_intersection): wasn't correctly
+       accounting for the (char-set-union cs2...) in the spec.  i.e.,
+       (char-set-diff+intersection a) -> copy-of-a, empty-set
+       and the following are equivalent:
+       (char-set-diff+intersection a (char-set #\a) (char-set #\b))
+       (char-set-diff+intersection a (char-set #\a #\b))
+
+       (scm_char_set_xor_x): disabled the side-effecting code, since it
+       gives inconsistent results to scm_char_set_xor for the case
+       (char-set-xor! a a a).
+
+       (scm_char_set_diff_plus_intersection_x): added cs2 argument, since
+       two arguments are compulsory in final spec.  also similar changes
+       as for scm_char_set_diff_plus_intersection.
+       * srfi-14.h (scm_char_set_diff_plus_intersection_x): added cs2.
+
+2001-07-22  Gary Houston  <ghouston@arglist.com>
+
+       * srfi-14.c (scm_char_set_intersection, scm_char_set_xor): remove
+       the compulsory cs1 arguments: all args are optional in final spec.
+
+       * srfi-14.h: declarations updated.
+
+2001-07-18  Martin Grabmueller  <mgrabmue@cs.tu-berlin.de>
+
+       * srfi-11.scm, srfi-8.scm: Update copyright notice.
+
+2001-07-17  Martin Grabmueller  <mgrabmue@cs.tu-berlin.de>
+
+       * srfi-14.c: Okay.  Now I got it.  Really.  This time it's fixed.
+       Guaranteed. (Maybe)
+
+       * srfi-19.scm: Define `current-time' before exporting it.
+
+2001-07-17  Martin Grabmueller  <mgrabmue@cs.tu-berlin.de>
+
+       * srfi-14.c: Fix for bug caused by brain-malfunctioning on my
+       side.  Bit sets were handled wrong because I couldn't tell bit
+       counts from byte counts.  Also, the bit array should be 256 / 8
+       bytes long.  Thank you, Gary!
+
+       Removed unnecessary protoype for scm_char_set_copy.
+
+2001-07-16  Gary Houston  <ghouston@arglist.com>
+
+       * srfi-14.scm: export string->char-set!, not string-char-set!.
+
+       * srfi-14.c (scm_char_set_ref, scm_char_set_cursor_next,
+       scm_end_of_char_set_p): reject negative cursor values.
+       (scm_list_to_char_set, scm_list_to_char_set_x): when reporting
+       type error in list component, omit the position (was always 1).
+
+2001-07-16  Martin Grabmueller  <mgrabmue@cs.tu-berlin.de>
+
+       (scm_char_set_map): Bug-fix: char-set-map was modifying the
+       argument instead of the return value.
+
+2001-07-16  Martin Grabmueller  <mgrabmue@cs.tu-berlin.de>
+
+       * srfi-14.c: Allocate correct memory size for charsets (32 bytes),
+       use this value for initializing and comparing charsets.
+       (scm_char_set_hash): Use ``better'' hash algorithm which produces
+       more values.
+
 2001-07-15  Gary Houston  <ghouston@arglist.com>
 
        * srfi-14.c (scm_char_set_hash): recognise 0 instead of #f in the
        opt arg to give default bound, as in final spec.  don't allow
        negative bounds.
 2001-07-15  Gary Houston  <ghouston@arglist.com>
 
        * srfi-14.c (scm_char_set_hash): recognise 0 instead of #f in the
        opt arg to give default bound, as in final spec.  don't allow
        negative bounds.
+       (scm_char_set_hash): bug fix: was overrunning the buffer and
+       calculating based on garbage.
+       (scm_char_set_eq, scm_char_set_leq): fix argument number in error
+       reporting: wasn't incremented due to macro coding.
+       (scm_char_set): report argument number in error reporting: was
+       hard coded to 1.  remove a couple of local variables.
 
 2001-07-13  Marius Vollmer  <mvo@zagadka.ping.de>
 
 
 2001-07-13  Marius Vollmer  <mvo@zagadka.ping.de>
 
        delete!, assoc): roll back the previous change.  instead place
        dummy definitions in a deprecated block at the beginning as in
        srfi-13.scm.
        delete!, assoc): roll back the previous change.  instead place
        dummy definitions in a deprecated block at the beginning as in
        srfi-13.scm.
-       
+
 2001-07-06  Rob Browning  <rlb@defaultvalue.org>
 
        * srfi-19.scm (priv:locale-reader): don't need open-output-string.
 2001-07-06  Rob Browning  <rlb@defaultvalue.org>
 
        * srfi-19.scm (priv:locale-reader): don't need open-output-string.
        properly and relied on non-R5RS-isms like passing reals to
        `quotient'.  For Guile, some additional fixes were needed because
        of the incomplete numeric tower implementation.  See also
        properly and relied on non-R5RS-isms like passing reals to
        `quotient'.  For Guile, some additional fixes were needed because
        of the incomplete numeric tower implementation.  See also
-       srfi-19.test. 
-       
+       srfi-19.test.
+
        * srfi-19.scm (date-zone-offset): Fixed typo in export clause.
        * srfi-19.scm (date-zone-offset): Fixed typo in export clause.
-       (add-duration): Renamed from priv:add-duration. 
+       (add-duration): Renamed from priv:add-duration.
        (priv:time-normalize!): Handle fractional nanoseconds; remove
        duplicate definition.
        (priv:current-time-tai): Fixed typo.
        (priv:time-normalize!): Handle fractional nanoseconds; remove
        duplicate definition.
        (priv:current-time-tai): Fixed typo.
        DST effects.
        (time-utc->date, time-tai->date, time-monotonic->date): Handle the
        changed signature of priv:local-tz-offset. Don't pass non-integer
        DST effects.
        (time-utc->date, time-tai->date, time-monotonic->date): Handle the
        changed signature of priv:local-tz-offset. Don't pass non-integer
-       arguments to quotient (non-R5RS, not supported by Guile). 
+       arguments to quotient (non-R5RS, not supported by Guile).
        (date->time-utc): Ensure that seconds in a date structure are
        always exact integers.  Handle DST properly.
        (current-date, julian-day->date, modified-julian-day->date):
        (date->time-utc): Ensure that seconds in a date structure are
        always exact integers.  Handle DST properly.
        (current-date, julian-day->date, modified-julian-day->date):
-       Handle the changed signature of priv:local-tz-offset.  
+       Handle the changed signature of priv:local-tz-offset.
        (julian-day->time-utc): Reverted earlier inexact->exact hack;
        make-time now handles inexact arguments.
        (priv:locale-print-time-zone): At least print the numerical time
        (julian-day->time-utc): Reverted earlier inexact->exact hack;
        make-time now handles inexact arguments.
        (priv:locale-print-time-zone): At least print the numerical time
-       zone. 
+       zone.
        (priv:integer-reader): Fixed named let iteration.
        (priv:read-directives): Use set-date-month! instead of
        priv:set-date-month! etc.
        (priv:integer-reader): Fixed named let iteration.
        (priv:read-directives): Use set-date-month! instead of
        priv:set-date-month! etc.
 2001-05-19  Marius Vollmer  <mvo@zagadka.ping.de>
 
        Avoid using module operations from C.
 2001-05-19  Marius Vollmer  <mvo@zagadka.ping.de>
 
        Avoid using module operations from C.
-       
+
        * srfi-13.c (scm_init_srfi_13_14): Removed.
        * srfi-14.h, srfi-14.c (scm_c_init_srfi_14): New.  Contains
        initializations needed by C clients of srfi-14.
        * srfi-13.c (scm_init_srfi_13_14): Removed.
        * srfi-14.h, srfi-14.c (scm_c_init_srfi_14): New.  Contains
        initializations needed by C clients of srfi-14.
        * srfi-10.scm: New file.
 
        * srfi-17.scm: New file, contributed by Matthias Koeppe.  Thanks a
        * srfi-10.scm: New file.
 
        * srfi-17.scm: New file, contributed by Matthias Koeppe.  Thanks a
-       lot!  
+       lot!
        Added `Commentary:' tag.
 
        * srfi-9.scm: Added `Commentary:' tag.
        Added `Commentary:' tag.
 
        * srfi-9.scm: Added `Commentary:' tag.
 
        Changed two procedure names to match final SRFI document.  Thanks
        to Rob Browning for spotting this.
 
        Changed two procedure names to match final SRFI document.  Thanks
        to Rob Browning for spotting this.
-       
+
        * srfi-13.scm (string-concatenate-reverse),
        (string-concatenate-reverse/shared): Rename from
        reverse-string-concatenate[/shared].
        * srfi-13.scm (string-concatenate-reverse),
        (string-concatenate-reverse/shared): Rename from
        reverse-string-concatenate[/shared].
 2001-04-23  Martin Grabmueller  <mgrabmue@cs.tu-berlin.de>
 
        Integrated the guile-srfi package into the Guile distribution.
 2001-04-23  Martin Grabmueller  <mgrabmue@cs.tu-berlin.de>
 
        Integrated the guile-srfi package into the Guile distribution.
-       
+
        * srfi-13.c: All procedures so specified in the SRFI now accept
        character set arguments.
 
        * srfi-13.c: All procedures so specified in the SRFI now accept
        character set arguments.
 
        to 0.0.3.
 
        * Released version 0.0.2.
        to 0.0.3.
 
        * Released version 0.0.2.
-       
+
        * Makefile.am: Added rules for builing the SRFI-14 library.
 
        * srfi-14.c, srfi-14.scm: New files, implementing SRFI-14
        * Makefile.am: Added rules for builing the SRFI-14 library.
 
        * srfi-14.c, srfi-14.scm: New files, implementing SRFI-14