1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-24 12:20:20 +02:00

Do no longer handle old-style uniform vectors.

This commit is contained in:
Marius Vollmer 2004-11-02 19:47:20 +00:00
parent df47dca314
commit b7a7750adf
7 changed files with 3 additions and 595 deletions

View file

@ -600,15 +600,6 @@ iprin1 (SCM exp, SCM port, scm_print_state *pstate)
break;
#if SCM_HAVE_ARRAYS
case scm_tc7_bvect:
case scm_tc7_svect:
case scm_tc7_ivect:
case scm_tc7_uvect:
case scm_tc7_fvect:
case scm_tc7_dvect:
case scm_tc7_cvect:
#if SCM_SIZEOF_LONG_LONG != 0
case scm_tc7_llvect:
#endif
scm_raprin1 (exp, port, pstate);
break;
#endif