diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | lib.c | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,5 +1,10 @@ 2014-09-26 Kaz Kylheku <kaz@kylheku.com> + * lib.c (do_and): Fix andf again: (andf) not producing + a function that returns t, as documented. + +2014-09-26 Kaz Kylheku <kaz@kylheku.com> + Version 98. * RELNOTES: Updated. @@ -4335,7 +4335,7 @@ val juxtv(val funlist) static val do_and(val fun1_list, val args) { fun1_list = nullify(fun1_list); - val ret = nil; + val ret = t; for (; fun1_list; fun1_list = cdr(fun1_list)) if (nilp((ret = apply(car(fun1_list), args, nil)))) |