diff options
author | Keith Packard <keithp@keithp.com> | 2017-12-19 11:43:23 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2017-12-19 11:43:23 -0800 |
commit | fa6f4b331db9d37da6767005fd375b696485b46b (patch) | |
tree | e4b07ba711e5e7a90b246855d40570252652a904 /src/scheme/ao_scheme_eval.c | |
parent | 00390fb09f47654905824af671b966ffca0a38b3 (diff) |
altos/scheme: ao_scheme__cons -> ao_scheme_cons
Fix the double underscore in this name. Ick.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/scheme/ao_scheme_eval.c')
-rw-r--r-- | src/scheme/ao_scheme_eval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scheme/ao_scheme_eval.c b/src/scheme/ao_scheme_eval.c index 9204ce1a..edc16a73 100644 --- a/src/scheme/ao_scheme_eval.c +++ b/src/scheme/ao_scheme_eval.c @@ -206,7 +206,7 @@ ao_scheme_eval_formal(void) } /* Append formal to list of values */ - formal = ao_scheme__cons(ao_scheme_v, AO_SCHEME_NIL); + formal = ao_scheme_cons(ao_scheme_v, AO_SCHEME_NIL); if (!formal) return 0; |