diff --git a/libguile/ChangeLog b/libguile/ChangeLog index 21fda579e..711a78363 100644 --- a/libguile/ChangeLog +++ b/libguile/ChangeLog @@ -1,5 +1,8 @@ 2005-01-10 Marius Vollmer + * ramap.c: Replaced single-index uses of scm_array_set_x with + scm_c_generalized_vector_set_x. + * unif.c (scm_array_rank, scm_array_dimensions, scm_shared_array_offset, scm_shared_array_increments, scm_array_ref, scm_array_set_x): Use scm_t_array_handle operations @@ -7,7 +10,9 @@ (scm_shared_array_root): Work with all kinds of arrays, including naked vectors. (indices_to_pos): New. - + (scm_make_shared_array): Use it instead of scm_aind; use handle + for oldra. + 2005-01-10 Kevin Ryde * posix.c (scm_mkstemp): Update docstring from manual. diff --git a/test-suite/ChangeLog b/test-suite/ChangeLog index e7a159403..e6dec73b4 100644 --- a/test-suite/ChangeLog +++ b/test-suite/ChangeLog @@ -1,3 +1,8 @@ +2005-01-10 Marius Vollmer + + * tests/unif.test (exception:wrong-num-indices): New, use it for + array-set! tests with wrong number of indices. + 2005-01-07 Marius Vollmer * tests/srfi-4.test: Use (test-suite lib) module.