From 369720835ef2bdfea9018d8012ef9efa663a68c8 Mon Sep 17 00:00:00 2001 From: Mikael Djurfeldt Date: Mon, 12 Jun 2000 11:59:32 +0000 Subject: [PATCH] * ramap.c (serial-array-copy!, serial-array-map!): Removed depracted aliases. (Replaced by `array-copy-in-order!' and `array-map-in-order'.) --- libguile/ramap.c | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/libguile/ramap.c b/libguile/ramap.c index 2e4d83388..a16c31fc5 100644 --- a/libguile/ramap.c +++ b/libguile/ramap.c @@ -808,14 +808,6 @@ racp (SCM src, SCM dst) } -#if (SCM_DEBUG_DEPRECATED == 0) - -/* This name is obsolete. Will go away in release 1.5. */ -SCM_REGISTER_PROC(s_serial_array_copy_x, "serial-array-copy!", 2, 0, 0, scm_array_copy_x); - -#endif /* SCM_DEBUG_DEPRECATED == 0 */ - - SCM_REGISTER_PROC(s_array_copy_in_order_x, "array-copy-in-order!", 2, 0, 0, scm_array_copy_x); @@ -1498,14 +1490,6 @@ ramap_a (SCM ra0,SCM proc,SCM ras) } -#if (SCM_DEBUG_DEPRECATED == 0) - -/* This name is obsolete. Will go away in release 1.5. */ -SCM_REGISTER_PROC(s_serial_array_map_x, "serial-array-map!", 2, 0, 1, scm_array_map_x); - -#endif /* SCM_DEBUG_DEPRECATED == 0 */ - - SCM_REGISTER_PROC(s_array_map_in_order_x, "array-map-in-order!", 2, 0, 1, scm_array_map_x);