diff options
author | Daniel Llorens <lloda@sarc.name> | 2020-02-06 16:34:50 +0100 |
---|---|---|
committer | Daniel Llorens <lloda@sarc.name> | 2020-04-09 16:59:39 +0200 |
commit | 54e676c1d26cff9202faa51ceb8b16948f379364 (patch) | |
tree | 9b1b6d542b14d1f71a46108e8eb3157ce9c3d3ba | |
parent | 68ae22eb5ec8bf8e6bf81acaca82aa81a916e9c2 (diff) | |
download | guile-54e676c1d26cff9202faa51ceb8b16948f379364.tar.gz |
Update branch news file
-rw-r--r-- | NEWS-wip-vector-cleanup.txt | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/NEWS-wip-vector-cleanup.txt b/NEWS-wip-vector-cleanup.txt index c45e6434f..7e382e8bb 100644 --- a/NEWS-wip-vector-cleanup.txt +++ b/NEWS-wip-vector-cleanup.txt @@ -15,6 +15,10 @@ Use array->list and array-copy (from (ice-9 arrays)) on general arrays. Use scm_is_vector instead. +** libguile/generalized-vectors.[hc] has been removed. + +If you were including libguile/generalized-vectors.h directly for any reason, just include libguile.h instead. + * Backward incompatible changes @@ -70,12 +74,13 @@ The ultimate goal of this patch set is to have arrays be strictly layered above - The _elements functions require the array handle interface even for true vectors, when all of handle, inc and off are unnecessary. This creates a burden (having to declare & release handles, etc). - The srfi-4 _elements functions don't accept arbitrary rank-1 xxxarray even though they require the array handle interface (inc, handle are superfluous). -** Plan [3/7] +** Plan [4/8] - [X] Provide scm_VTYPE_(writable_)elements with signature [(SCM) -> pointer] for all vector types. - [ ] Provide scm_array1_VTYPE_(writable_)elements with signature [(SCM, &handle, ...) -> pointer] for all vector types. These replace the old scm_VTYPE_(writable_)elements but will be available on the array API and not on the xxxvector APIs. - - [ ] Remove the dependence of vector.c bitvector.c srfi-4.c etc. on array-handle.h + - [X] Remove the dependence of vector.c on array-handle-h - [X] Remove the dependence of VECTOR-TYPE-ref -> array_handle use seen in scm_array_get_handle. + - [ ] Remove the dependence of bitvector.c srfi-4.c etc. on array-handle.h - [X] Bug: setaffinity in posix.c failed to release the mask handle - [ ] Bug: scm_bitvector_elements doesn't select for type = bit - [ ] Bug: bit-set*! already requires second arg to be true bitvector |