diff options
author | Keith Packard <keithp@keithp.com> | 2017-11-25 17:29:10 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2017-11-25 17:29:10 -0800 |
commit | 00bf2ca86b60e6501880011897cea073865c5a03 (patch) | |
tree | d7125e77052843a32000d5aef631b3054f20aba5 /src/lisp/ao_lisp.h | |
parent | 5f9f97cc2d43936d1941da3a9a130c279bc70b99 (diff) |
altos/lisp: Rename progn to begin
Match scheme name.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/lisp/ao_lisp.h')
-rw-r--r-- | src/lisp/ao_lisp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lisp/ao_lisp.h b/src/lisp/ao_lisp.h index cbbbe9a4..858212dd 100644 --- a/src/lisp/ao_lisp.h +++ b/src/lisp/ao_lisp.h @@ -229,7 +229,7 @@ enum eval_state { eval_apply, /* Execute apply */ eval_cond, /* Start next cond clause */ eval_cond_test, /* Check cond condition */ - eval_progn, /* Start next progn entry */ + eval_begin, /* Start next begin entry */ eval_while, /* Start while condition */ eval_while_test, /* Check while condition */ eval_macro, /* Finished with macro generation */ |