summaryrefslogtreecommitdiff
path: root/libguile/deprecated.c
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2009-07-17 12:45:24 +0200
committerAndy Wingo <wingo@pobox.com>2009-07-19 15:15:44 +0200
commit66b9d7d304a349d5bb4f763a47143f09da58d97f (patch)
treed291ae5dc8ce5652403265e10932d3c0860a2179 /libguile/deprecated.c
parent2a610be59412a9d633a373c6f6ec4d4794c40fd8 (diff)
downloadguile-66b9d7d304a349d5bb4f763a47143f09da58d97f.tar.gz
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.
Diffstat (limited to 'libguile/deprecated.c')
-rw-r--r--libguile/deprecated.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/deprecated.c b/libguile/deprecated.c
index 57a2f0657..f9a858b53 100644
--- a/libguile/deprecated.c
+++ b/libguile/deprecated.c
@@ -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