diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2021-02-04 07:09:33 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-02-04 07:09:33 -0800 |
commit | 972e2b968c177e164d3c731718cbfab7b3592e4c (patch) | |
tree | dbafba322ff8988816d1c77d40c783cbe50c4ef0 /lisplib.c | |
parent | 726fc85294c3e9954587f7c70e1f8776102d282a (diff) | |
download | txr-972e2b968c177e164d3c731718cbfab7b3592e4c.tar.gz txr-972e2b968c177e164d3c731718cbfab7b3592e4c.tar.bz2 txr-972e2b968c177e164d3c731718cbfab7b3592e4c.zip |
matcher: add :match parameter macro.
With this, we can do matching anywhere we are able to specify
a function parameter list and a body, and we can specify
ordinary arguments, which are inserted to the left of the
implicit match. Plus, it specialy integrates with :key.
* lisplib.c (match_set_entries): Autoload on :match.
* share/txr/stdlib/match.tl (:match): New parameter macro.
* txr.1: Documented.
Diffstat (limited to 'lisplib.c')
-rw-r--r-- | lisplib.c | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -878,6 +878,12 @@ static val match_set_entries(val dlt, val fun) lit("lambda-match"), lit("defun-match"), nil }; + val match_k = intern(lit("match"), keyword_package); + + if (fun) + sethash(dlt, match_k, fun); + else + remhash(dlt, match_k); set_dlt_entries(dlt, name, fun); intern_only(name_noload); |