summaryrefslogtreecommitdiffstats
path: root/lisplib.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2021-06-16 20:03:04 -0700
committerKaz Kylheku <kaz@kylheku.com>2021-06-16 20:03:04 -0700
commit1d2967e74413dc45bd298de7c9a9bf9f72d9ca02 (patch)
tree0589046238440ece37c55ab6e057498afe4f886a /lisplib.c
parent91fb2910f7cae2ebb36de0b871bc3b2e3f7a74eb (diff)
downloadtxr-1d2967e74413dc45bd298de7c9a9bf9f72d9ca02.tar.gz
txr-1d2967e74413dc45bd298de7c9a9bf9f72d9ca02.tar.bz2
txr-1d2967e74413dc45bd298de7c9a9bf9f72d9ca02.zip
New macro: flow.
There has been interest in the community in a threading macro; a triviality which which applies the opip syntax to a value. Eschewing unusual glyph combinations like ->> and whatnot, I've chosen the English word flow for this. * share/txr/stdlib/op.tl (flow): New macro. * lisplib.c (op_set_entries): Set up autoload for flow. * txr.1: Documented. * share/txr/stdlib/doc-syms.tl: Updated.
Diffstat (limited to 'lisplib.c')
-rw-r--r--lisplib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisplib.c b/lisplib.c
index 90bdc987..9ca2773c 100644
--- a/lisplib.c
+++ b/lisplib.c
@@ -763,7 +763,7 @@ static val op_set_entries(val dlt, val fun)
val name[] = {
lit("op"), lit("do"), lit("lop"), lit("ldo"), lit("ap"), lit("ip"),
lit("ado"), lit("ido"), lit("ret"), lit("aret"),
- lit("opip"), lit("oand"),
+ lit("opip"), lit("oand"), lit("flow"),
nil
};
set_dlt_entries(dlt, name, fun);