summaryrefslogtreecommitdiffstats
path: root/lib.h
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2019-03-12 22:34:25 -0700
committerKaz Kylheku <kaz@kylheku.com>2019-03-12 22:34:25 -0700
commit7717eedcb68dfa7cfdd2327f9c29f99e9ecc4c01 (patch)
tree0c7c8bebef092e68b9e6eab305d6e9aea346dee2 /lib.h
parent066a88f72be6063d9e8e9a6feb726ba017e2d675 (diff)
downloadtxr-7717eedcb68dfa7cfdd2327f9c29f99e9ecc4c01.tar.gz
txr-7717eedcb68dfa7cfdd2327f9c29f99e9ecc4c01.tar.bz2
txr-7717eedcb68dfa7cfdd2327f9c29f99e9ecc4c01.zip
lib: rename make_half_lazy_cons.
* lib.h (make_half_lazy_cons): Renamed to make make_lazy_cons_car. * lib.c (rem_lazy_rec, make_half_lazy_cons): Follow rename. * hash.c (hash_keys_lazy, hash_keys, hash_values_lazy, hash_values, hash_pairs_lazy, hash_pairs, hash_alist_lazy, hash_alist): Follow rename.
Diffstat (limited to 'lib.h')
-rw-r--r--lib.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib.h b/lib.h
index bc41ffea..404ba7b4 100644
--- a/lib.h
+++ b/lib.h
@@ -663,7 +663,7 @@ mem_t *chk_copy_obj(mem_t *orig, size_t size);
mem_t *chk_xalloc(ucnum m, ucnum n, val self);
val cons(val car, val cdr);
val make_lazy_cons(val func);
-val make_half_lazy_cons(val func, val car);
+val make_lazy_cons_car(val func, val car);
void rcyc_cons(val cons);
void rcyc_list(val list);
void rcyc_empty(void);