diff options
author | Keith Packard <keithp@keithp.com> | 2017-12-01 15:40:23 -0600 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2017-12-01 15:40:23 -0600 |
commit | c31744299e5a4342bbe26d3735ee2d8f09192ae9 (patch) | |
tree | 108153f1d01c56800d6e4dc0c56dbcce979717be /src/test/ao_lisp_os.h | |
parent | 98923ae1189f062b8b94120d47a56892db25493f (diff) |
altos/lisp: split set/def. Add def support to lambdas
In scheme, set can only re-define existing variables while def cannot
redefine existing variables in lambda context. Def within lambda
creates a new variable at the nearest enclosing scope.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/test/ao_lisp_os.h')
-rw-r--r-- | src/test/ao_lisp_os.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/ao_lisp_os.h b/src/test/ao_lisp_os.h index 9b021900..ebd16bb4 100644 --- a/src/test/ao_lisp_os.h +++ b/src/test/ao_lisp_os.h @@ -22,7 +22,7 @@ #include <stdlib.h> #include <time.h> -#define AO_LISP_POOL_TOTAL 3072 +#define AO_LISP_POOL_TOTAL 16384 #define AO_LISP_SAVE 1 #define DBG_MEM_STATS 1 |