diff options
| author | Keith Packard <keithp@keithp.com> | 2017-11-16 17:49:47 -0800 | 
|---|---|---|
| committer | Keith Packard <keithp@keithp.com> | 2017-11-16 18:40:31 -0800 | 
| commit | b3b4731fcb89cb404433f37a7704a503567c43bd (patch) | |
| tree | 74f0a214725905c7556a735127f01a4b4b0926be /src/lisp/Makefile-inc | |
| parent | bd881a5b85d7cd4fb82127f92f32e089499b50cb (diff) | |
altos/lisp: Add scheme-style bools (#t and #f)
Cond and while compare against #f, just like scheme says to.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/lisp/Makefile-inc')
| -rw-r--r-- | src/lisp/Makefile-inc | 5 | 
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lisp/Makefile-inc b/src/lisp/Makefile-inc index 126deeb0..6c8702fb 100644 --- a/src/lisp/Makefile-inc +++ b/src/lisp/Makefile-inc @@ -1,11 +1,11 @@  LISP_SRCS=\ -	ao_lisp_make_const.c\  	ao_lisp_mem.c \  	ao_lisp_cons.c \  	ao_lisp_string.c \  	ao_lisp_atom.c \  	ao_lisp_int.c \  	ao_lisp_poly.c \ +	ao_lisp_bool.c \  	ao_lisp_builtin.c \  	ao_lisp_read.c \  	ao_lisp_frame.c \ @@ -19,4 +19,5 @@ LISP_SRCS=\  LISP_HDRS=\  	ao_lisp.h \  	ao_lisp_os.h \ -	ao_lisp_read.h +	ao_lisp_read.h \ +	ao_lisp_builtin.h  | 
