diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | lib.c | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,5 +1,9 @@ 2014-06-26 Kaz Kylheku <kaz@kylheku.com> + * lib.c (last): Bugfix: reversed null test. + +2014-06-26 Kaz Kylheku <kaz@kylheku.com> + * eval.c (eval_init): register range_regex and tok_where as intrinsics. @@ -421,7 +421,7 @@ loc lastcons(val list) val last(val list) { loc p = lastcons(list); - return nullocp(p) ? deref(p) : list; + return nullocp(p) ? list : deref(p); } loc ltail(loc cons) |