From f2df1d0b58a3436e2137cb57b86bae805c033f3a Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Tue, 20 Dec 2016 19:57:51 -0800 Subject: comment change in expander. * eval.c (do_expand): Fix outdated comment about what forms are expanded like function calls. --- eval.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/eval.c b/eval.c index 8963bb2f..caa3c501 100644 --- a/eval.c +++ b/eval.c @@ -3924,10 +3924,9 @@ static val do_expand(val form, val menv) } else if (sym == var_s || sym == expr_s) { return form; } else { - /* funtion call - also handles: prog1, call, if, and, or, - unwind-protect, return, dwim, set, inc, dec, - push, pop, flip, and with-saved-vars. */ + /* funtion call expansion also handles: prog1, call, if, and, or, + unwind-protect, return and other special forms whose arguments + are evaluated */ val form_ex = dot_to_apply(form, nil); val sym_ex = first(form_ex); val args = rest(form_ex); -- cgit v1.2.3