diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2021-07-08 19:06:29 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-07-08 19:06:29 -0700 |
commit | c0a9036d15d9f0a910aab82905e6b5e7d6ce71da (patch) | |
tree | 614d18e2f89ece718ca48017e2a3f49d82fb8c42 /lib.h | |
parent | 53d6dc469c43127f498283a59194d4fbefead19e (diff) | |
download | txr-c0a9036d15d9f0a910aab82905e6b5e7d6ce71da.tar.gz txr-c0a9036d15d9f0a910aab82905e6b5e7d6ce71da.tar.bz2 txr-c0a9036d15d9f0a910aab82905e6b5e7d6ce71da.zip |
type: MAXTYPE doesn't account for DARG.
* lib.h (enum type): Change MAX_TYPE to correctly alias the
last type DARG, rather than the second-to-last TNOD type.
* lib.c (seq_kind_tab): Include an entry for DARG, mapping to
SEQ_NOTSEQ.
Diffstat (limited to 'lib.h')
-rw-r--r-- | lib.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -67,7 +67,7 @@ typedef double_uintptr_t dbl_ucnum; typedef enum type { NIL = TAG_PTR, NUM = TAG_NUM, CHR = TAG_CHR, LIT = TAG_LIT, CONS, STR, SYM, PKG, FUN, VEC, LCONS, LSTR, COBJ, CPTR, ENV, - BGNUM, FLNUM, RNG, BUF, TNOD, DARG, MAXTYPE = TNOD + BGNUM, FLNUM, RNG, BUF, TNOD, DARG, MAXTYPE = DARG /* If extending, check TYPE_SHIFT and all ocurrences of MAX_TYPE */ } type_t; |