diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | txr.1 | 4 |
2 files changed, 6 insertions, 2 deletions
@@ -1,5 +1,9 @@ 2014-06-17 Kaz Kylheku <kaz@kylheku.com> + * txr.1: Fix broken examples for some and none functions. + +2014-06-17 Kaz Kylheku <kaz@kylheku.com> + * eval.c (not_null): New static function. (eval_init): Use null_f in existing registration of null and not. Add registration for not_null as "true", @@ -8261,10 +8261,10 @@ values, the none function returns t. Examples: ;; some of the integers are odd - (some (fun oddp) '(2 4 6 9) nil) -> t + [some '(2 4 6 9) oddp] -> t ;; none of the integers are even - (none (fun evenp) '(1 3 4 7) nil) -> t + [none '(1 3 4 7) evenp] -> t .SH ASSOCIATION LISTS |