mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-15 08:10:17 +02:00
remove enclosed arrays
* libguile/arrays.h: * libguile/array-map.c: * libguile/arrays.c: * libguile/deprecated.c: Remove "enclosed arrays". The only user-facing procedures that this affects are scm_enclose_array / enclose-array. If enclosed arrays are added back, it should be through the generic array interface; but really, it sounds like something that would be better implemented in Scheme.
This commit is contained in:
parent
2a610be594
commit
66b9d7d304
4 changed files with 23 additions and 177 deletions
|
@ -1309,7 +1309,7 @@ scm_i_arrayp (SCM a)
|
|||
{
|
||||
scm_c_issue_deprecation_warning
|
||||
("SCM_ARRAYP is deprecated. Use scm_is_array instead.");
|
||||
return SCM_I_ARRAYP(a) || SCM_I_ENCLOSED_ARRAYP(a);
|
||||
return SCM_I_ARRAYP(a);
|
||||
}
|
||||
|
||||
size_t
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue