summaryrefslogtreecommitdiffstats
path: root/lib.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2021-07-08 19:06:29 -0700
committerKaz Kylheku <kaz@kylheku.com>2021-07-08 19:06:29 -0700
commitc0a9036d15d9f0a910aab82905e6b5e7d6ce71da (patch)
tree614d18e2f89ece718ca48017e2a3f49d82fb8c42 /lib.c
parent53d6dc469c43127f498283a59194d4fbefead19e (diff)
downloadtxr-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.c')
-rw-r--r--lib.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib.c b/lib.c
index dff01c5a..588e5dac 100644
--- a/lib.c
+++ b/lib.c
@@ -158,6 +158,7 @@ const seq_kind_t seq_kind_tab[MAXTYPE+1] = {
SEQ_NOTSEQ, /* RNG */
SEQ_VECLIKE, /* BUF */
SEQ_NOTSEQ, /* TNOD */
+ SEQ_NOTSEQ, /* DARG */
};
val identity(val obj)