mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-14 23:50:19 +02:00
Deprecate dead code in array-map.c
* libguile/array-map.c, libguile/array-map.h: deprecate scm_ra_eqp, scm_ra_lessp, scm_ra_leqp, scm_ra_grp, scm_ra_greqp, scm_ra_sum, scm_ra_product, scm_ra_difference, scm_ra_divide, scm_array_identity. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
7290de89fb
commit
75a1b26c5d
2 changed files with 19 additions and 13 deletions
|
@ -396,6 +396,7 @@ SCM_DEFINE (scm_array_copy_x, "array-copy!", 2, 0, 0,
|
|||
|
||||
/* Functions callable by ARRAY-MAP! */
|
||||
|
||||
#if SCM_ENABLE_DEPRECATED == 1
|
||||
|
||||
int
|
||||
scm_ra_eqp (SCM ra0, SCM ras)
|
||||
|
@ -637,9 +638,9 @@ scm_array_identity (SCM dst, SCM src)
|
|||
return racp (SCM_CAR (src), scm_cons (dst, SCM_EOL));
|
||||
}
|
||||
|
||||
#endif /* SCM_ENABLE_DEPRECATED */
|
||||
|
||||
|
||||
static int
|
||||
static int
|
||||
ramap (SCM ra0, SCM proc, SCM ras)
|
||||
{
|
||||
long i = SCM_I_ARRAY_DIMS (ra0)->lbnd;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue