*** empty log message ***
[bpt/guile.git] / srfi / ChangeLog
index d412511..a35dfdf 100644 (file)
@@ -1,3 +1,146 @@
+2004-08-25  Marius Vollmer  <mvo@zagadka.de>
+
+       SRFI-13 and SRFI-14 have been moved into the core.
+       
+       * srfi-13.scm, srfi-14.scm: Simply re-export the relevant
+       bindings.
+
+       * srfi-13.h, srfi-13.c, srfi-14.h, srfi-14.c: Removed all real
+       content except for the init functions.
+       
+2004-08-19  Marius Vollmer  <marius.vollmer@uni-dortmund.de>
+
+       * srfi-13.h, srfi-13.c: (scm_substring_shared): Renamed to
+       scm_substring_sharedS.
+
+       * srfi-14.c, srfi-13.c: Adapted to new internal string and symbol
+       API.
+
+       * srfi-13.scm (substring/shared): Export as replacement since we
+       now have a version in the core.
+
+2004-08-15  Marius Vollmer  <mvo@zagadka.de>
+
+       * srfi-39.scm: New, from Jose A Ortega Ruiz.  Thanks!
+
+2004-08-14  Kevin Ryde  <user42@zip.com.au>
+
+       * srfi-13.c (scm_string_any, scm_string_every): Add support for char
+       and charset as predicates, per SRFI-13 spec.
+
+2004-08-12  Marius Vollmer  <marius.vollmer@uni-dortmund.de>
+
+       * srfi-13.c (MY_VALIDATE_SUBSTRING_SPEC_COPY,
+       MY_VALIDATE_STRING_COPY): Modernized clones of the deprecated
+       validation macros.  Replaced every use.
+
+2004-08-05  Kevin Ryde  <user42@zip.com.au>
+
+       * srfi-13.c (scm_string_any, scm_string_every): Enhance docstrings as
+       per doc/ref/srfi-modules.texi.
+
+2004-08-02  Marius Vollmer  <marius.vollmer@uni-dortmund.de>
+
+       * srfi-4.c: Replaced scm_num2* and scm_*2num with scm_to_* and
+       scm_from_*, respectively.
+       (print_int64, print_uint64): Rewritten by just calling scm_iprin1
+       on a SCM.
+
+2004-08-02  Kevin Ryde  <user42@zip.com.au>
+
+       * srfi-13.c (scm_string_every): Correction to initial "res" value,
+       return should be #t for an empty string.  Reported by Andreas Vögele.
+
+2004-07-10  Marius Vollmer  <marius.vollmer@uni-dortmund.de>
+
+       * srfi-13.c, srfi-14.c, srfi-4.c: Changed all uses of
+       SCM_VALIDATE_INUM, SCM_VALIDATE_INUM_COPY, SCM_VALIDATE_BIGINT,
+       SCM_VALIDATE_INUM_MIN, SCM_VALIDATE_INUM_MIN_COPY,
+       SCM_VALIDATE_INUM_MIN_DEF_COPY,SCM_VALIDATE_INUM_DEF,
+       SCM_VALIDATE_INUM_DEF_COPY, SCM_VALIDATE_INUM_RANGE,
+       SCM_VALIDATE_INUM_RANGE_COPY to scm_to_size_t or similar.
+
+2004-07-06  Marius Vollmer  <marius.vollmer@uni-dortmund.de>
+
+       * srfi-1.c, srfi-13.c, srfi-14.c, srfi-4.c: Replaced all uses of
+       deprecated SCM_FALSEP, SCM_NFALSEP, SCM_BOOL, SCM_NEGATE_BOOL, and
+       SCM_BOOLP with scm_is_false, scm_is_true, scm_from_bool, and
+       scm_is_bool, respectively.
+
+2004-07-05  Kevin Ryde  <user42@zip.com.au>
+
+       * srfi-4.c (uvec_sizes): Add "const".
+
+       * srfi-31.scm: Correction to heading comment.
+
+2004-06-20  Rob Browning  <rlb@defaultvalue.org>
+
+       * srfi-4.c: fix #ifdef checks for 64-bit types; should be #if.
+       Add separate symmetric test for SCM_HAVE_T_UINT64 in one case.
+       (uvec_print): rewrite using a union to make more
+       compact, and use static print_uint64 and print_int64 to print
+       64-bit elements.
+       (print_int64): new static function (temporary fix).
+       (print_uint64): new static function (temporary fix).
+
+       * Makefile.am (srfi_DATA): add srfi-31.scm.
+
+       * srfi-31.scm: new file.
+
+2004-04-24  Dirk Herrmann  <dirk@dirk-herrmanns-seiten.de>
+
+       * srfi-17.scm (setter, car, cdr etc.): When within one define
+       expression a new variable in the local module is defined in terms
+       of an equally named variable from some other module, use @ to
+       refer to the variable in the other module.  This is necessary due
+       to section 5.2.1 of R5RS: In a define expression first the new
+       binding is created and then the expression is evaluated.
+
+2004-04-24  Kevin Ryde  <user42@zip.com.au>
+
+       * srfi-11.scm (let-values): Use make-symbol rather than gensym, for
+       guaranteed uniqueness of temp variable symbols.
+
+2004-04-15  Kevin Ryde  <user42@zip.com.au>
+
+       * srfi-13.c (scm_string_trim, scm_string_trim_right,
+       scm_string_trim_both): Cast to unsigned char for isspace.
+
+2004-04-06  Han-Wen Nienhuys   <hanwen@xs4all.nl>
+
+       * srfi-13.c (s_scm_string_map): convert character to unsigned char
+       before converting to unsigned int. This prevents hi-bit ascii as
+       being converted large integers.
+       (string_upcase_x): change caller for scm_{up,down}case to
+       scm_c_{up,down}case
+
+2004-03-23  Kevin Ryde  <user42@zip.com.au>
+
+       * srfi-1.scm (circular-list): Rewrite using set-cdr!, no need to copy
+       parameter list.
+
+2004-02-08  Mikael Djurfeldt  <djurfeldt@nada.kth.se>
+
+       * Makefile.am (TAGS_FILES): Use this variable instead of
+       ETAGS_ARGS so that TAGS can be built using separate build
+       directory.
+
+2004-01-24  Marius Vollmer  <mvo@zagadka.de>
+
+       * Makefile.am (srfi_DATA): Added srfi-26.scm.
+
+2004-01-21  Marius Vollmer  <m.vollmer@ping.de>
+
+       * srfi-26.scm: New, from Daniel Skarda.  Thanks!
+
+2003-12-03  Kevin Ryde  <user42@zip.com.au>
+
+       * srfi-1.c, srfi-1.h, srfi-1.scm (count): Rewrite in C, avoiding
+       non-tail recursion.
+
+       * srfi-1.scm (map!): Define as an alias for map, previous definition
+       was not tail-recursive.
+       
 2003-08-23  Kevin Ryde  <user42@zip.com.au>
 
        * srfi-1.c, srfi-1.h, srfi-1.scm (list-copy): New function, derived