diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2021-01-15 22:01:49 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-01-15 22:01:49 -0800 |
commit | 165f289b0a028906e574281286bc0e8f98346b6b (patch) | |
tree | 1ee2e1cedcf587516e94c7cf943582b9eccb508f /lisplib.c | |
parent | ec5a5e9d846e4af1d2311ab37b13ecb7d596e490 (diff) | |
download | txr-165f289b0a028906e574281286bc0e8f98346b6b.tar.gz txr-165f289b0a028906e574281286bc0e8f98346b6b.tar.bz2 txr-165f289b0a028906e574281286bc0e8f98346b6b.zip |
matcher: add if-match and match-case.
* lisplib.c (match_set_entries): Add match-case and if-match
autoload trigger symbols.
* share/txr/stdlib/match.tl (if-match, match-case): New
macros.
Diffstat (limited to 'lisplib.c')
-rw-r--r-- | lisplib.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -874,7 +874,7 @@ static val match_set_entries(val dlt, val fun) nil }; val name[] = { - lit("when-match"), + lit("when-match"), lit("match-case"), lit("if-match"), nil }; |