From be164f523e133a6715ca98c3a009d380a9bed220 Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Mon, 5 Feb 2018 13:23:03 -0500 Subject: [PATCH] Removed errant macro --- docs/api/scheme/cyclone/match.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/docs/api/scheme/cyclone/match.md b/docs/api/scheme/cyclone/match.md index c52416de..ca72a96b 100644 --- a/docs/api/scheme/cyclone/match.md +++ b/docs/api/scheme/cyclone/match.md @@ -235,10 +235,6 @@ This is the primary match macro. See the [Patterns](#patterns) section above for Shortcut for `lambda` + `match`. Creates a procedure of one argument, and matches that argument against each clause. -(define-syntax match-lambda - (syntax-rules () - ((_ (pattern . body) ...) (lambda (expr) (match expr (pattern . body) ...))))) - # match-lambda* *Syntax*