summaryrefslogtreecommitdiff
path: root/libguile/print.h
diff options
context:
space:
mode:
authorDaniel Llorens <lloda@sarc.name>2021-08-16 15:26:24 +0200
committerDaniel Llorens <lloda@sarc.name>2021-08-16 15:39:21 +0200
commitc2cf685b65ee652600ecd914d86e8a00e750b4da (patch)
tree1b1f70f48b552ccf1c6d1638800631c46e8fa767 /libguile/print.h
parentb4a80f4239b19fea4d2cc3e9d197f24b809f0624 (diff)
downloadguile-c2cf685b65ee652600ecd914d86e8a00e750b4da.tar.gz
Remove the 'simple vector' concept
* Deprecate scm_is_simple_vector. * libguile/vectors.c (scm_vector_elements, scm_vector_writable_elements): These functions take an array; reword to make this clear. * libguile/print.h: Remove reference to 'simple vector'. * doc/ref/api-data.texi: Remove documentation for scm_is_simple_vector. Remove references to 'simple vector'. Fix documentation for scm_vector_elements, scm_vector_writable_elements. * test-suite/tests/arrays.test: * test-suite/tests/vectors.test: Remove references to 'simple vector'.
Diffstat (limited to 'libguile/print.h')
-rw-r--r--libguile/print.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/print.h b/libguile/print.h
index b9cc20a6b..587475362 100644
--- a/libguile/print.h
+++ b/libguile/print.h
@@ -74,7 +74,7 @@ typedef struct scm_print_state {
unsigned long ceiling; /* Max size of reference stack */
SCM ref_vect; /* Stack of references used during
circular reference detection;
- a simple vector. */
+ a vector. */
SCM highlight_objects; /* List of objects to be highlighted */
} scm_print_state;