mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-07-07 05:06:37 +02:00
forgot to update types lookup for bignums after introducing byte vectors
This commit is contained in:
parent
307f81c315
commit
4a2d9474bc
1 changed files with 1 additions and 1 deletions
|
@ -487,7 +487,7 @@ enum sexp_number_combs {
|
|||
};
|
||||
|
||||
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) {
|
||||
return sexp_pointerp(a) ? sexp_number_types[sexp_pointer_tag(a)&15]
|
||||
|
|
Loading…
Add table
Reference in a new issue