diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2014-09-26 22:54:51 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2014-09-26 22:54:51 -0700 |
commit | a767b4b5016005fd3e37126e1437e8cca56b60e1 (patch) | |
tree | 63634e2a60dedb4595772a038b038dcfd2504f8f /lib.c | |
parent | e899df28747291f464e6d3e7e615c5872998ef5e (diff) | |
download | txr-a767b4b5016005fd3e37126e1437e8cca56b60e1.tar.gz txr-a767b4b5016005fd3e37126e1437e8cca56b60e1.tar.bz2 txr-a767b4b5016005fd3e37126e1437e8cca56b60e1.zip |
* lib.c (do_and): Fix andf again: (andf) not producing
a function that returns t, as documented.
Diffstat (limited to 'lib.c')
-rw-r--r-- | lib.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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)))) |