diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | lib.c | 4 |
2 files changed, 6 insertions, 2 deletions
@@ -1,5 +1,9 @@ 2014-07-07 Kaz Kylheku <kaz@kylheku.com> + * lib.c (replace_list, sel): fix use of unused variable. + +2014-07-07 Kaz Kylheku <kaz@kylheku.com> + * LICENSE: Small wording change. Add pointer to METALICENSE. * METALICENSE: New file. @@ -777,7 +777,7 @@ val replace_list(val list, val items, val from, val to) nao); for (; seq && where && items; seq = cdr(seq), idx = plus(idx, one)) { - val wh; + val wh = nil; for (; where && lt(wh = car(where), idx); where = cdr(where)) ; /* empty */ @@ -5629,7 +5629,7 @@ val sel(val seq_in, val where_in) val idx = zero; for (; seq && where; seq = cdr(seq), idx = plus(idx, one)) { - val wh; + val wh = nil; for (; where && lt(wh = car(where), idx); where = cdr(where)) ; /* empty */ |