forgot to update types lookup for bignums after introducing byte vectors

This commit is contained in:
Alex Shinn 2010-07-31 22:04:38 +09:00
parent 307f81c315
commit 4a2d9474bc

View file

@ -487,7 +487,7 @@ enum sexp_number_combs {
}; };
static int sexp_number_types[] = static int sexp_number_types[] =
{0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 3, 0, 0, 0, 0}; {0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 0, 0, 0, 0};
static int sexp_number_type (sexp a) { static int sexp_number_type (sexp a) {
return sexp_pointerp(a) ? sexp_number_types[sexp_pointer_tag(a)&15] return sexp_pointerp(a) ? sexp_number_types[sexp_pointer_tag(a)&15]