summaryrefslogtreecommitdiffstats
path: root/lisplib.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2021-05-04 21:36:07 -0700
committerKaz Kylheku <kaz@kylheku.com>2021-05-04 21:36:07 -0700
commitcd157595ffd58ad1eadb52c9adf2671a94794f07 (patch)
tree9a186441049963a92ff01c89b00133079b8fedec /lisplib.c
parent5be89bc80f7f235805ec706f1ff13e6952f0d34e (diff)
downloadtxr-cd157595ffd58ad1eadb52c9adf2671a94794f07.tar.gz
txr-cd157595ffd58ad1eadb52c9adf2671a94794f07.tar.bz2
txr-cd157595ffd58ad1eadb52c9adf2671a94794f07.zip
matcher: new "each-match family" of macros.
* lisplib.c (match_set_entries): New autoload symbols: each-match, append-matches, keep-matches, each-match-product, append-match-products, keep-match-products. * share/txr/stdlib/doc-syms.tl: Updated. * share/txr/stdlib/match.tl (each-match-expander): New function. (each-match, append-matches, keep-matches, each-match-product, append-match-products, keep-match-products): New macros. * tests/011/patmatch.tl: New tests covering each macro, far from exhaustively. * txr.1: Documented.
Diffstat (limited to 'lisplib.c')
-rw-r--r--lisplib.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/lisplib.c b/lisplib.c
index 5d85ec48..a58a8972 100644
--- a/lisplib.c
+++ b/lisplib.c
@@ -877,6 +877,9 @@ static val match_set_entries(val dlt, val fun)
val name[] = {
lit("when-match"), lit("match-case"), lit("if-match"),
lit("lambda-match"), lit("defun-match"), lit("defmatch"),
+ lit("each-match"), lit("append-matches"),
+ lit("keep-matches"), lit("each-match-product"),
+ lit("append-match-products"), lit("keep-match-products"),
lit("*match-macro*"),
nil
};