From 63a4e5af2e3169da1905471fa6ac69ad8829b46e Mon Sep 17 00:00:00 2001 From: Stevie Strickland Date: Wed, 9 Jul 2008 17:39:31 +0000 Subject: [PATCH] This was incorrectly syntaxed. svn: r10700 --- collects/scheme/match/parse-helper.ss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/collects/scheme/match/parse-helper.ss b/collects/scheme/match/parse-helper.ss index 73eb8c705c..acc3e8c6b2 100644 --- a/collects/scheme/match/parse-helper.ss +++ b/collects/scheme/match/parse-helper.ss @@ -18,7 +18,7 @@ (cond [(eq? '_ (syntax-e x)) (make-Dummy x)] [(ddk? x) (raise-syntax-error 'match "incorrect use of ... in pattern" - #'x)] + x)] [else (make-Var x)])) ;; stx : syntax of pattern, starting with quote