diff options
author | Marius Vollmer <mvo@zagadka.de> | 2004-11-09 16:14:22 +0000 |
---|---|---|
committer | Marius Vollmer <mvo@zagadka.de> | 2004-11-09 16:14:22 +0000 |
commit | 241b64d63f69caaf940cc4c3f51384d9e437634e (patch) | |
tree | b2e09d5e053f6f329292ab451fb231d157ecd274 /libguile/print.c | |
parent | 6cf0f51de86168509f730578421864d76cb3d7e0 (diff) | |
download | guile-241b64d63f69caaf940cc4c3f51384d9e437634e.tar.gz |
Do no longer handle scm_tc7_bvect bitvectors.
Diffstat (limited to 'libguile/print.c')
-rw-r--r-- | libguile/print.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/libguile/print.c b/libguile/print.c index d3e5b5ae8..d8689111f 100644 --- a/libguile/print.c +++ b/libguile/print.c @@ -598,11 +598,6 @@ iprin1 (SCM exp, SCM port, scm_print_state *pstate) } EXIT_NESTED_DATA (pstate); break; -#if SCM_HAVE_ARRAYS - case scm_tc7_bvect: - scm_raprin1 (exp, port, pstate); - break; -#endif case scm_tcs_subrs: scm_puts (SCM_SUBR_GENERIC (exp) ? "#<primitive-generic " |