diff options
Diffstat (limited to 'eval.c')
-rw-r--r-- | eval.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2226,7 +2226,7 @@ static void reg_var(val sym, val *loc) static val if_fun(val cond, val then, val alt) { - return if3(cond, then, alt); + return if3(cond, then, default_bool_arg(alt)); } static val or_fun(val vals) |