summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--eval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/eval.c b/eval.c
index 40f0057d..59d0d36b 100644
--- a/eval.c
+++ b/eval.c
@@ -918,7 +918,7 @@ val expand(val form)
return rlcp(cons(sym, forms_ex), form);
} else {
/* funtion call */
- /* also handles: call, if, and, or, unwind-protect, return */
+ /* also handles: progn, call, if, and, or, unwind-protect, return */
val args = rest(form);
val args_ex = expand_forms(args);