diff options
author | Andy Wingo <wingo@pobox.com> | 2020-04-15 22:14:25 +0200 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2020-04-15 22:14:25 +0200 |
commit | d7fea134530e552e15732fba01257cf6fba10fec (patch) | |
tree | 92c4c938c414fcdb13187fc576a56f6ba3ffafb8 /libguile/deprecated.h | |
parent | 8110061e647134ab9071ecb5ce59b69b4ed6ed35 (diff) | |
download | guile-d7fea134530e552e15732fba01257cf6fba10fec.tar.gz |
bitvector-set-all-bits! / bitvector-clear-all-bits! replace bitvector-fill!
* NEWS: Add entry.
* doc/ref/api-data.texi (Bit Vectors): Update.
* libguile/bitvectors.h:
* libguile/bitvectors.c (scm_c_bitvector_set_all_bits_x)
(scm_c_bitvector_clear_all_bits_x): New functions.
* libguile/deprecated.h:
* libguile/deprecated.c (scm_bitvector_fill_x): Deprecate.
* module/ice-9/sandbox.scm (mutable-bitvector-bindings): Replace
bitvector-fill! with bitvector-set-all-bits! /
bitvector-clear-all-bits!.
* module/system/vm/disassembler.scm (static-opcode-set): Use
bitvector-set-bit!.
* module/system/vm/frame.scm (available-bindings): Use the new
interfaces.
* test-suite/tests/bitvectors.test: Update.
Diffstat (limited to 'libguile/deprecated.h')
-rw-r--r-- | libguile/deprecated.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libguile/deprecated.h b/libguile/deprecated.h index a2438310b..a0ccac75d 100644 --- a/libguile/deprecated.h +++ b/libguile/deprecated.h @@ -119,6 +119,7 @@ SCM_DEPRECATED SCM scm_c_bitvector_ref (SCM vec, size_t idx); SCM_DEPRECATED SCM scm_bitvector_ref (SCM vec, SCM idx); SCM_DEPRECATED void scm_c_bitvector_set_x (SCM vec, size_t idx, SCM val); SCM_DEPRECATED SCM scm_bitvector_set_x (SCM vec, SCM idx, SCM val); +SCM_DEPRECATED SCM scm_bitvector_fill_x (SCM vec, SCM val); SCM_DEPRECATED SCM scm_bit_count (SCM item, SCM seq); SCM_DEPRECATED SCM scm_bit_position (SCM item, SCM v, SCM k); SCM_DEPRECATED SCM scm_bit_set_star_x (SCM v, SCM kv, SCM obj); |