summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2022-02-13 09:34:36 -0800
committerKaz Kylheku <kaz@kylheku.com>2022-02-13 09:34:36 -0800
commitc3354a5d318665169a548c012387a30f7a810710 (patch)
treeb5ee91f7462f6e11feb51d40051bb69f9525c49a
parent0ed02b34c1e37907379f19b133ebc1d3c7d30002 (diff)
downloadtxr-c3354a5d318665169a548c012387a30f7a810710.tar.gz
txr-c3354a5d318665169a548c012387a30f7a810710.tar.bz2
txr-c3354a5d318665169a548c012387a30f7a810710.zip
all: wrong self name.
* lib.c (all_satisfy): self should be "all" rather than "some".
-rw-r--r--lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib.c b/lib.c
index 51092c36..39faca3e 100644
--- a/lib.c
+++ b/lib.c
@@ -3395,7 +3395,7 @@ val all_satisfy(val seq, val pred_in, val key_in)
{
val pred = default_arg(pred_in, identity_f);
val key = default_arg(key_in, identity_f);
- val self = lit("some");
+ val self = lit("all");
seq_iter_t iter;
val elem;
val ret = t;