From 457dc52c416d94b1bc30f0d96b5b87f577680e36 Mon Sep 17 00:00:00 2001 From: Rob Browning Date: Sat, 28 Apr 2001 17:30:20 +0000 Subject: [PATCH] * tags.h (SCM_DOUBLE_CELLP): deprecation expired - removed. (scm_tc_dblr): deprecation expired - removed. (scm_tc_dblc): deprecation expired - removed. (scm_tc16_flo): deprecation expired - removed. (scm_tc_flo): deprecation expired - removed. --- libguile/tags.h | 9 --------- 1 file changed, 9 deletions(-) diff --git a/libguile/tags.h b/libguile/tags.h index 0670c16f7..e64ad4c35 100644 --- a/libguile/tags.h +++ b/libguile/tags.h @@ -290,10 +290,6 @@ typedef long scm_bits_t; #define SCM_CELLP(x) (((sizeof (scm_cell) - 1) & SCM_UNPACK (x)) == 0) #define SCM_NCELLP(x) (!SCM_CELLP (x)) -#if (SCM_DEBUG_DEPRECATED == 0) -#define SCM_DOUBLE_CELLP(x) (((2 * sizeof (scm_cell) - 1) & SCM_UNPACK (x)) == 0) -#endif /* SCM_DEBUG_DEPRECATED == 0 */ - /* See numbers.h for macros relating to immediate integers. */ @@ -546,11 +542,6 @@ extern char *scm_isymnames[]; /* defined in print.c */ #define scm_tc7_msymbol scm_tc7_symbol #define scm_tcs_symbols scm_tc7_symbol -#define scm_tc16_flo scm_tc16_real -#define scm_tc_flo 0x017fL -#define scm_tc_dblr scm_tc16_real -#define scm_tc_dblc scm_tc16_complex - #endif /* SCM_DEBUG_DEPRECATED == 0 */ #endif /* SCM_TAGS_H */