summaryrefslogtreecommitdiff
path: root/src/lisp/ao_lisp_eval.c
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2017-11-18 20:38:15 -0800
committerKeith Packard <keithp@keithp.com>2017-11-18 20:49:52 -0800
commit5f8f0ed5cd5d4b4f793c602ed09f9b4bdb98f7e8 (patch)
treede2468ca80a3411735517ee39155d1cf30055ceb /src/lisp/ao_lisp_eval.c
parente745229311366a792110d78d8480a2bf83eef9a0 (diff)
altos/lisp: Add 'big' ints -- 24 bits wide
With the default ints being only 14 bits, having a larger type with more precision seems useful. This is not exposed to the application. Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/lisp/ao_lisp_eval.c')
-rw-r--r--src/lisp/ao_lisp_eval.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lisp/ao_lisp_eval.c b/src/lisp/ao_lisp_eval.c
index 758a9232..8fa488e2 100644
--- a/src/lisp/ao_lisp_eval.c
+++ b/src/lisp/ao_lisp_eval.c
@@ -110,6 +110,7 @@ ao_lisp_eval_sexpr(void)
/* fall through */
case AO_LISP_BOOL:
case AO_LISP_INT:
+ case AO_LISP_BIGINT:
case AO_LISP_STRING:
case AO_LISP_BUILTIN:
case AO_LISP_LAMBDA: