1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-10 22:10:21 +02:00

*** empty log message ***

This commit is contained in:
Marius Vollmer 2005-01-10 01:45:07 +00:00
parent 34ea161776
commit 74c58fce0f
2 changed files with 11 additions and 1 deletions

View file

@ -1,5 +1,8 @@
2005-01-10 Marius Vollmer <mvo@zagadka.de>
* 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 <user42@zip.com.au>
* posix.c (scm_mkstemp): Update docstring from manual.

View file

@ -1,3 +1,8 @@
2005-01-10 Marius Vollmer <mvo@zagadka.de>
* tests/unif.test (exception:wrong-num-indices): New, use it for
array-set! tests with wrong number of indices.
2005-01-07 Marius Vollmer <mvo@zagadka.de>
* tests/srfi-4.test: Use (test-suite lib) module.